1
vote
1answer
18 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 …
0
votes
2answers
20 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
& …
0
votes
1answer
31 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.ReloadableResourceBundleMessage …
2
votes
3answers
31 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 c …
0
votes
1answer
15 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 eh …
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 …
1
vote
2answers
53 views
Where do you define spring bean configuration files
I am separating my spring bean configuration files as follows:
myapp-service.xml
myapp-servlet.xml
However I am getting the error;
Error creating bean with name 'beanName' de …
0
votes
5answers
61 views
argh - can’t get spring to log sql
I'm researching spring for a possible switch to a spring stack. One of the things that I thought was cool was the ability for spring jdbc to log all the executed sql. So I put in …
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, configu …
0
votes
1answer
32 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 fiel …
1
vote
0answers
23 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 …
1
vote
1answer
33 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 configu …
0
votes
1answer
36 views
Forcing classpath precedence with Tomcat 5.5 under eclipse
I am currently developing a web application based upon Struts2 & Spring components combined with a set of tier libraries in a company-made framework.
These librairies expose s …
0
votes
2answers
64 views
Spring JTA configuration - how to set TransactionManager?
We configure our Spring transaction in Spring config as:
<tx:jta-transaction-manager/>
I gather this means that Spring will automatically discover the underlying JTA imple …
