"java/lang/StringBuilder" is available in 1.5 or above
Type: Posts; User: koalalam; Keyword(s):
"java/lang/StringBuilder" is available in 1.5 or above
I finally find out the reason why it isn't work. It is because I used a different version of Spring. The version used in the sample app is 2.5 while I used 2.0.
Regarding to the strange URL, I found something which may be related to this issue. From the change log of SWF http://static.springframework.org/spring-webflow/docs/2.0.x/changelog.txt:
I...
I can finally make it work by specifying the full path of the JSP page:
/WEB-INF/flow/login/login.xml
<start-state idref="enterLoginInformation" />
<view-state...
Thanks for your information. However, I don't quite understand your meaning. Let's see the following config as an example:
<web:flow-registry id="flowRegistry"...
Oops... I just realized that it is a common problem in JBoss due to a different version of Hibernate bundled with JBoss. What I did is to remove 3 libraries (hibernate-annotations.jar,...
I tried using Ivy first but ended up sth like this:
Then, I built my own Maven2 config as follow:
<?xml version="1.0" encoding="UTF-8"?>
<project...
The default name for a flow is the filename excluding the extension. Can we give a customized name to a flow?
The reason is I want to specify flow definition files using wildcard e.g...
I encountered a problem executing a flow while working on my example application which is based on the 2.0 sample "booking-mvc". Shown below is the details:
Stack trace
web.xml
...
The problem is solved. Cause of it are:
1) The 'id' attribute in flow definition is not working ie. can't specify flow id
NO "_flowId" parameter is specified in the URL. Is this parameter no...
I also found that even though I specified a flow definition file which doesn't exist, the deployment won't fail.
<flow:flow-location path="/WEB-INF/flow/login/login-flow_notExist.xml" />
The problem was solved after reading a thread from hungvu. Thanks.
The changes include:
/WEB-INF/web.xml
<servlet-mapping>
<servlet-name>springapp</servlet-name>
Hi all,
I encountered a "No flow definition ... found" problem. I wonder if the flow definition file (in my case, the login-flow.xml) is actually loaded because even though I intentionally added a...
I think I have similar problem with yours. See my post http://forum.springframework.org/showthread.php?t=48397
Hi all,
An error was thrown when trying to start a webflow:
java.lang.IllegalArgumentException: The requestPathInfo is null: unable to extract flow definition id or flow execution key
...
Hi tnine, I encountered the same problem, the "no no-arg create()" error, when accessing SLSB. You mentioned "didn't generate all of the RMI glue code that is required in WAS for the client side.",...
Hi,
I would like to know if there is a way to simplify object injection, especially when a same object is being injected to many other objects e.g. a Hibernate session factory object is required...
Hi isyak,
Thanks so much for sharing with me your config.
I found one difference between your config and mine. Instead of sending out a JMS message to a JMS destination, an audit log is...
Hi isyak,
Thanks very much for your sharing. However, I can't find setting for TransactionProxyFactoryBean. Did you use it for declarative transaction handling?
Thanks a lot.
Regards,
Koala...
Hi isyak,
Thanks for your advice.
I have tried setting the Hibernate Interceptor in LocalSessionFactoryBean as well but failed too. Did you also use TransactionProxyFactoryBean? Can you please...
Hi,
I found that the Hibernate Interceptor which is set to a HibernateTransactionManager's entityInterceptor was not called when the transactionManager is wired to TransactionProxyFactoryBean....
When I declared a new transaction to be used when calling a specific function in a bean, I found that instead of creating a new transaction, an existing transaction is participated. Shown below is my...
Hi,
I have tried using XAPool with JTA looked up from WebLogic Server as well as JOTM. In both cases, I got the following strange behavior:
2006-10-18 18:23:29,636 [main] DEBUG...
Hi,
Thanks for your information. However, what about if I want to use transaction manager from J2EE container (in my case, the WebLogic Server)? What I need is a XA DataSource, right ? So, where...
Hi,
I am actually using a XADataSource. Shown below is the JDBC configuration which is loaded using a PropertyPlaceholderConfigurer:
...