it drive me nuts, but i finally figured out what's causing it.
i have indigo 3.7.0 and after i installed spring ide core 2.7.1 using validate validation of xml files to slow down EXTERMELY, so i'm...
Type: Posts; User: emaayan; Keyword(s):
it drive me nuts, but i finally figured out what's causing it.
i have indigo 3.7.0 and after i installed spring ide core 2.7.1 using validate validation of xml files to slow down EXTERMELY, so i'm...
hi..
i'm trying to use hibernate via spring with SessionFactoryUtils, the LocalSessionFactoryBean is connected to a jta transaction manager, and i'm using TransactionTemplate,
all as usuall,...
hi..
the case i'm after is resolving the ehcache.xml file in LocalSessionFactroy config.
while just specifying ehcache.xml works under jboss, it does not under websphere, so i thought about...
hi..
we have a home grown framework which allows the concept of 'applications' inside an ear, these are applications are only visible as separate eclipse projects, but when deployed are deployed...
hi..
i have the follpwing problem
i'm attempting to use spring-ws along with jibx for a client do a biztalk server
the server exposes the request as an element which has a sequence of 2...
hi.. i don't exactly what problem this belongs to but here is the situations.
enviorment is jboss 4.2.3, with spring 2.0.8
we are using a statless session ejb (ver 2.1) the method on this ejb...
hi..
i was wondering on how we can extend webflow to our needs.
we have a home grown framework which is rather similar in nature to webflow's use of xml (transations, activites etc..) only...
i know that annotations on interfaces cannot be detected by implementing classs
like:
@Hel
public interface Hello{
}
public class World implements Hello{
}
hi..
using jboss 3.2.5 , and i've been trying to use TrasnactioNTemplate with it's jta, however when i do getTransaction, i always get a Timedout transaction, i have no idea why..
on another...
hi is there for spring like this one ?
http://www.seamframework.org/Community/GettingStartedDevelopingTheSeamFramework
so far this is only structed page i've seen for guidelines on how to start...
hi..
untill i thought in jta it meant that you could execute a a datbase action in a method, send a jms method in the same method, and execute another db action on the MDP, if i get an execption on...
hi..
still trying to use distributed transactions, almost got it.
i have an annotated ProcessFlow class which persist an entity and send another entity though a jms, the jms reciver throws an...
hi..
i have 2 dao's with different entity managets to different databases,
my configuration is this:
<bean id="btmConfig" factory-method="getConfiguration" ...
hi..
having the following confg:
<!-- jotm (in a parent context) -->
<bean id="jotm"
class="org.springframework.transaction.jta.JotmFactoryBean"/>
hi..
we have a homegrown framework which is built like this:
every "command" class extends an abstract class which is called AbstractCommand.
each such class has a corresponding xml file which...
hi..
i'm trying active mq 5.2.0 + spring 2.5.6 + eclipse 3.3
i've been getting:
Unable to locate Spring NamespaceHandler for element 'amq:broker' of schema namespace...
hi..
i know it's been asked before, but still wondering is there away to clone an entire object graph (without the id's) to a new object graph, what we want is to actually make linked list of...
after much fussing around, i think i've finally gotten it work with only spring and bitronix jta
here it is:
persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence...
hi..
i'm looking for a way to define a jta configuration of 2 hibernate jpa entity managers while keeping all the settings of data source in persistence.xml
my manager is bitornix
i keep...
hi.
<tx:advice id="purchaseAdvice" transaction-manager="tm">
<tx:attributes>
<tx:method name="save"/>
</tx:attributes>
</tx:advice>
<aop:config>
i wana avoid using Transactional becvouse i would like to avoid using any spring dependency in my domain model code (any pojo).
you mean every method in dao? how do i do that? i'm not familiar with pointcuts expression (wish i had an ecplise plug-in builder for it)
thanks, but my example is more complicated then that, i have one class which retrieves data, and another which changes it, i modified my xml:
when do i place the transaction, the thing the loads,...
but which method to i put transactional ? the ones the query the beans? the one that actually does the processing bean mutation? i tried it, but still i can't see any changes.
hi..
i have the following main class which does this:
final FlowProcess f=(FlowProcess) ctx.getBean("flowProcess");
final PersonDao pDao =(PersonDao) ctx.getBean("personDao");
final...