0
votes
1answer
43 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 …
6
votes
4answers
189 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
3answers
31 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
42 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
3answers
87 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 …
2
votes
1answer
32 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
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
17 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
57 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
58 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 …
0
votes
1answer
35 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
0answers
17 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.
0
votes
2answers
188 views
one-to-many JPA annotations won’t delete orphans
Hello good people.
I 'm trying to build a user and a contact management project.
i have a lot of classes so will limit it to what are in concern here. i have a userAccount, userProfile, and group
here …
1
vote
2answers
95 views
why is the springsource.com website built in drupal?
I was trying to learn a little about JAVA frameworks like Spring. I hit view source on springsource.com and it's totally Drupal (a PHP CMS).
What's up with that? You would think they would build the …
1
vote
3answers
131 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
…
