0
votes
1answer
13 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(HttpServl …
0
votes
2answers
38 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 …
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 …
0
votes
1answer
190 views
CAS Single Sign Out requests being ignored by JSP+Spring
I've set up CAS for single sign on with my Spring+JSP webapp, but now I've found out that single sign out isn't actually logging me out of the applications. I've confirmed that if …
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
2answers
76 views
Faces conversion service is not found for converting ‘dataModel’
While creating my first swf application with JSF integration, I get the following error : Unable to load class 'dataModel' when parsing my flow definition on the first request.
It …
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
& …
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 …
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 c …
0
votes
1answer
10 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 Batc …
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 …
0
votes
2answers
96 views
using JDBC Connection from presentation tier in 2-tier and 3-tier applications
I am writing a module that will be used in different applications (2-tiers and 3-tiers).
I'll need to connect to a DB. so, I made the module requires a java.sql.Connection object a …
1
vote
1answer
48 views
Creating temporary JMS jms topic in Spring
I'm trying to refactor some legacy code to use Spring to handle the jms connections to a mainframe service. I need to connect create a temporary topic for the mainframe service rep …
0
votes
1answer
16 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
76 views
+100
Dependency Injection: Jetty 7
Hi StackOverflow!
My application requires several interface implementations which require a Jetty server to do their job. This is, however, not necessarily the case in every imple …
