3
votes
1answer
14 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
8 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
45 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
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
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 …
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 …
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 …
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 …
6
votes
4answers
192 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 …
0
votes
0answers
21 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
3answers
60 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
1answer
39 views
Distributed Application Environment and Web Services - What/How to learn?
I want to learn how to create distributed application environments and web services using spring, aspectj, hibernate, etc. rather than EJBs.
Can anyone recommend a book or set of books that can …
0
votes
1answer
74 views
Spring Batch: java.io.IOException: Stream closed exception when combining MultiResourceItemWriter and FlatFileItemWriter
I have a Spring Batch process which takes a set of rows in the database and creates a number of flat files from those rows, 10 rows per file. To do this, I've created a Spring Batch process, similar …
2
votes
3answers
112 views
Spring - share web application context between different webapps
Hi,
I have a multi-module maven project. One of the modules is a util layer that has some spring beans. I want to share the same spring beans within the other modules.
The other modules are deployed …
