3
votes
1answer
15 views
Log4J - SiftingAppender-like functionality
I work in a project that uses Log4J. One of the requirement is to create a separate log file for each thread; this itself was a odd issue, somewhat sorted by creating a new FileAppender on the fly and …
0
votes
1answer
9 views
Passing parameters from trinidad controls to the flow
Hi,
I am new to JSF, Facelets, SWF and Trinidad technologies, and I having a problem submitting parameters from the <tr:commandButton> on a xhtml page to the flow (using the <f:param>). …
0
votes
1answer
48 views
spring dependency injection in any java bean
I have application that look like below
without spring (prior)
UI-> service --> javabean
p.s: my ui call service (not using DI) and i want to remain this way
new service()
I want my …
0
votes
3answers
37 views
How to bind CustomDateEditor to all Date fields in Springframework?
I am having a dataBind which is having few attributes alongwith a list of bean and one of the attribute of the bean is of type Date. Now i would like to add the customDateEditor to this date field.
My …
1
vote
3answers
138 views
Howcan I get started with Spring Batch?
I'm trying to learn Spring Batch, but the startup guide is very confusing. Comments like
You can get a pretty good idea about
how to set up a job by examining the
unit tests in the
…
0
votes
2answers
14 views
Model generation for manually entered page in Spring framework
I have to extend some Spring web application, but I'm not very familiar with the framework (however, I have some experience with few other frameworks). I can see that there is "ModelAndView" concept …
0
votes
1answer
21 views
CXF JAX-RS is causing BusException
After adding a RESTFul service using Apache CXF to my Spring (and Wicket) project I get the following exception:
org.apache.cxf.BusException: No binding factory for namespace …
0
votes
2answers
47 views
Setting values from a class to Spring context file
We usually define some beans with their properties in the Spring context file and write some setter methods in the class.
Let's say I wanna do the opposite. I have a bean in the context file and want …
2
votes
1answer
35 views
spring: add xml context on-the-fly?
I'd like to be able to load spring context.xml files on-the-fly, so that they are wired with previously loaded contexts (meaning, in contextA.xml I can ref a bean defined in contextB.xml which was …
6
votes
4answers
193 views
Is there a way to map an URL to another URL in Spring?
In Struts 1 you could have, in struts-config.xml, a declaration like:
<action path="/first" forward="/second.do">
Is something similar also possible in Spring, or can I map an URL only to a …
2
votes
3answers
90 views
How negligible is ParameterizedBeanPropertyRowMapper’s performance hit?
The javadoc says:
Please note that this class is designed to provide convenience rather than high performance. For best performance consider using a custom RowMapper.
How slow is it in the real …
1
vote
3answers
471 views
Spring embedded ldap server in unit tests
I am currently trying to use an embedded ldap server for unit tests.
In Spring Security, you can quickly define an embedded ldap server for testing with the tag with some sample data loaded from the …
2
votes
3answers
62 views
Can I use an Environment variable based location for Spring FileSystemResource?
I have a requirement to have all our properties files be stored in a directory. The location of this directory should be stored in a system environment variable. In my application context I will need …
0
votes
0answers
22 views
Customizing Spring concurrent-session-control configuration
How do I detect and inform the user that they already have an active session and provide them an option to create a new session or close the current active one? Please advise. Thanks much.
2
votes
4answers
617 views
how to display custom error message in jsp for spring security auth exception
I want to display custom error message in jsp for spring security authentication exceptions.
For wrong username or password,
spring displays : Bad credentials
what I need : Username/Password …
