0
votes
1answer
12 views
Accessing Spring bean *not* by dependency injection
We have some domain objects that are created at runtime - not by Spring. These domain objects need access to some service type beans that are being managed by Spring. How can the domain objects that …
0
votes
3answers
26 views
How to configure Apache FtpServer?
I found this very simple description on Apache FtpServer's document:
Integration with Spring Framework
Apache FtpServer uses Spring Framework to implement the configuration. That also means …
2
votes
1answer
42 views
Spring MVC very confused about controller mappings
Using annotation-based controller mappings.
@Controller
public class AlertsController {
@RequestMapping(value="create", method=RequestMethod.GET)
public void create(HttpServletRequest request, …
1
vote
1answer
23 views
HibernateTransactionManager : possible to throw exception without rollback ?
In Spring, I have declared a method to be transactional. I use HibernateTransactionManager. Now, I would like to throw an exception from this method, but I do not want hibernate to rollback the …
0
votes
2answers
21 views
DWR/OpenSessionInView “Session is Closed!” in Java and Hibernate
They say that a closed session in hibernate and webapp with ajax is a common problem with java and spring so I have to set the OpenSessionInViewInFilter in the web.xml like this
<listener>
…
0
votes
3answers
48 views
Spring Properties File
I am using this in my application config to specify where to get my messages
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
…
0
votes
1answer
18 views
How can i wire-up org.springframework.transaction.interceptor.TransactionProxyFactoryBean and org.springframework.orm.hibernate3.HibernateInterceptor ?
I wired-up but it did not work as I expected.
I have set the lazy inialization true between entities abd believe,HibernateInterceptor manages the hibernate session. When I trying to access the object …
0
votes
1answer
19 views
ehcache warnning message “ No configuration found”
I have got following warning when the application start up.
2009-05-13 09:19:41,171 WARN net.sf.ehcache.config.Configurator - No configuration found. Configuring ehcache from ehcache-failsafe.xml …
2
votes
3answers
32 views
How to use spring to resolve dependencies of an object created manually?
Hi guys!
I would like to know if it's possible to use Spring to resolve the dependencies of an object created manually in my program. Take a look at the following class:
public class TestClass {
…
0
votes
1answer
11 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 …
1
vote
1answer
37 views
Store Password Field in Encryption Form Using MySQL and Hibernate
Hello All..
I am using Spring, Hibernate for developing my application..
And as DB side, I have mysql..
Now, My requirement is like, I have User table and that has password field with varchar type.
…
1
vote
0answers
24 views
list available web services on tomcat using spring-ws
Is it possible to get a list of all available web services on a tomcat server?
0
votes
1answer
16 views
Calling @Controller methods once per request
Is there a nice way to have Spring's @Controller classes to call a specific method once per request?
Right now I'm using a method annotated with @InitBinder for this purpose, but this is suboptimal …
1
vote
1answer
35 views
Freemarker template not found
Hi,
I'm currently trying to get Freemarker to work with my application using Spring. No matter what I try I keep getting template not found. I am not sure if I have the configuration set up …
1
vote
1answer
37 views
Using Spring managed DAO without controller?
Hello,
I'm trying to get my Portlets work with some DAO Objects which I configured as spring beans. I've included an application.xml to my WEB-INF, added it to my web.xml, configured hibernater …
