Hi All,
We are using spring webflow 1.0.5 and spring 2.5.4,
All the webflows work properly if we are using the Oracle WLS 10.3
But when we changed the app server to JBoss EAP 5.0.x, one of...
Type: Posts; User: sami25; Keyword(s):
Hi All,
We are using spring webflow 1.0.5 and spring 2.5.4,
All the webflows work properly if we are using the Oracle WLS 10.3
But when we changed the app server to JBoss EAP 5.0.x, one of...
Hi,
try using this weblogic.xml , put this under the WEB-INF of your app
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90">
...
Hi All,
using roo and the script vote.roo that generated a voting application,
but unable to deploy on jboss 5.1.0 using jdk6
org.springframework.beans.factory.BeanDefinitionStoreException:...
Hi All,
I could find them at this location,
https://src.springframework.org/svn/spring-samples/
Hi ,
I downloaded spring 3.0.2 with docs(zip) , but couldnt find the petclinic that normally ships with the spring distribution.
is there any link from where we could download the samples?
Hi All,
Could we introduce tasks in the spring webflow which requires approvals through human interventation? for example like Jboss Seam using JBPM
Hi ,
you need to override the following method,
protected boolean isFormSubmission(HttpServletRequest request){
return request.getParameterMap().size()> 0 ||...
Hi,
As far as I know, you could use only one command class per controller,
but could you please elaborate on the need of a multiple command class for a controller?
Hi,
you could try the following,
Object A wants to use the list that is provided by Object B,
Inject Object B into Object A from the constructor and use the list of Object B.
Hi, If you would want to make the xsd available to external users via HTTP, you can try the following option.
you could inject the path of the xsd in a bean,
then you could write a simple...
Hi,
You could put the xsl in the same package/directory as your bean and then inject its value using
<property name="xsdlocation" value="classpath:com/test/test.xsd"/>
note the type of...
Hi,
if you just want to hide the jsp but wouldnt want to write a controller then you could use the out of the box controller org.springframework.web.servlet.mvc.ParameterizableViewController...
Hi,
if you are looking for flexible layouts of a webpage to be managed,
there are two solutions one is tiles and the other sitemesh , maybe there are others ,
Velocity is certainly a...
Hi,
Try and check if there is connectivity to the smtp server,
check if you are behind a firewall or a proxy, you would have to configure the proxyHost and proxyPort if needed
Hi,
I dont think so you can know which servlet context it is getting executed automatically, since your time task does not have access to either request or servlet context directly, what you could...
Hi,
you could keep all the jsp inside the /WEB-INF directory of your web application,
the second is to configure a view resolver like the following.
<bean id="viewResolver"...
Hi,
As far as I could understand , you have two pages one with a form that the user can use to key in values, the user clicks on submit, you persist the values and then redirect the user to...
Hi,
I think you are doing validation by yourself , which is not a very good way, atleast when you are using the Spring MVC,
since you are trying to do things which are anyways handled by the...
Hi,
Have a look at the following,
The Dojo support that is provided by the SpringJS, the spring JS is shipped along with webflow.
The other option is to use JQuery,
Hi,
you are on the correct path by using the simpleformcontroller(SFC), typically this is used if you have a form and would want to bind to a command object,
the SFC supports validation through...
Hi,
Maybe you should try implementing the RequestToViewNameTranslator
Hi,
you have mapped the / as the pattern to be intercepted by the dispatcher servlet, hence you are having the problem.
there are many ways to solve this problem,
identify the pattern...
Hi All,
Resolved the issue by using antlr3.0.1 version
Hi,
Has anybody faced the following ,
2008-12-29 11:10:08,975 ERROR [org.springframework.web.context.ContextLoader] -
<Context initialization failed>
java.lang.NoSuchFieldError: ruleMemo...
Hi,
formerly it was known as acegi security ,
but now it is Spring security