Tagged Questions
Version 3.x of the Spring Framework
10
votes
5answers
1k views
Best practices when using Spring 3 annotations
I'm looking for some best practices when using Spring 3 annotations.
I'm currently moving to Spring 3 and from what I've read so far I see a lot of accent placed on using annotations and moving away ...
9
votes
2answers
4k views
What's the difference between <mvc:annotation-driven /> and <context:annotation-config /> in servlet?
I am migrating from Spring 2.5 to Spring 3.
They have introduced <mvc:annotation-driven /> which does some black magic. This is expected to be declared in servlet configuration file only.
In ...
6
votes
3answers
818 views
Difference between <context:annotation-config> vs <context:component-scan>
I'm learning Spring 3 and I don't seem to grasp the functionality behind <context:annotation-config> and <context:component-scan>.
From what I've read they seem to handle different ...
5
votes
0answers
168 views
How do I get unit test to run in java 7: java.lang.VerifyError: Expecting a stackmap frame at branch target
Hi I am running a maven test using maven 3.0.3 with hibernate 4.0.0 Final release and spring 3.1 on jdk7 update 2.
I get the following error.
Caused by: java.lang.VerifyError: Expecting a ...
4
votes
2answers
274 views
Spring 3.0 junit test DispatcherServlet
I am trying to test my application with junit.
Therefore I've setup the following class:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = ...
4
votes
1answer
80 views
Does order matter while injecting properties in ProxyFactoryBean
I am trying to inject the aspects in a service. For this service I am creating a proxied object using classic way.
I have written a bean- baseProxy of type (ProxyFactoryBean) which contains a list of ...
4
votes
5answers
191 views
Assertive programming with JavaScript
I know why assertive programming is good, so I want to use it with JavaScript. However, I don't want to show users error boxes, and it's unusual thing. Just ignore it and make them retry could be ...
4
votes
4answers
663 views
Starting a project with Spring 3
At work we have a (large... 1-2 years of development ahead with a dozen of people in the team) project that will soon start and the "higher ups" are considering Spring 3 as the web framework ...
4
votes
1answer
444 views
Spring3 's @Transactional @Scheduled not committed to DB?
This is my 1st time trying Spring3's @Scheduled , but found I cannot commit to DB. This is my code :
@Service
public class ServiceImpl implements Service , Serializable
{
@Inject
private Dao ...
4
votes
1answer
811 views
Spring 3.0 MVC binding nested object
Why is spring not binding the values on my nested object?
The SecurityQuestion object on the RegistrationBean is set with question and answer as null, null, respectively, despite setting then in ...
4
votes
2answers
2k views
How to use property from property file specified in PropertyPlaceholderConfigurer in JSP
In my application context I have defined properties file:
<context:property-placeholder location="classpath:application.properties" />
I want to get value of the property defined in that ...
3
votes
2answers
175 views
Spring conversion service - from List<A> to List<B>
I have registered a custom conversion service in a Spring 3 application. It works well for POJOs but it does not work on Lists.
For example, I convert from String to Role and it works fine, but not ...
3
votes
2answers
289 views
Spring 3 <mvc:interceptors> flawed?
I have a Spring 2.5.x application which I'm migrating to Spring 3 and just bumped into a little problem.
I have an handler mapping like so:
<bean id="handlerMappings1" ...
3
votes
2answers
213 views
<context:component-scan> not picking up my @RequestMappings if handler mappings defined in XML
I'm using Spring 3.0.5 with <context:component-scan> and @RequestMapping annotations on my controllers. This works, and URLs are registered by the package scan.
But there is a problem when I ...
3
votes
4answers
690 views
Spring 3 Security: AccessDeniedHandler is not being invoked
I have a spring 3 application with the configurations given below. When any user tries to access a page and he/she isn't logged in, I get an Access is Denied exception with an ugly stack trace. How do ...
3
votes
1answer
118 views
Binding delimited strings in textbox to Collection<String>
I have an <form:input type="text" /> element that can take several values, each delimited by a semicolon. For example, it can take a value such as Mike;Jack;Bob.
How can I bind/pass this type ...
3
votes
1answer
1k views
Spring's @Scheduled error : Only one AsyncAnnotationBeanPostProcessor may exist within the context
I am trying Spring 3's @Scheduled annotation . Here is my configuration (app.xml) :
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
3
votes
1answer
608 views
Spring 3 form binding object is always null
I'm trying to bind a nested object with Spring 3, and I'm having issues.
JSP:
<portlet:actionURL var="formAction" />
<form:form id="add-objects-form" method="post" ...
3
votes
4answers
970 views
Spring MVC 3.0: How do I bind to a persistent object
I'm working with Spring MVC and I'd like it to bind a a persistent object from the database, but I cannot figure out how I can set my code to make a call to the DB before binding. For example, I'm ...
2
votes
2answers
212 views
Exception in Spring 3.1 + Hibernate 4.0.1
I have a GWT+Hibernate+JPA+Spring configuration file which is OK with Spring 3.0.x + Hibernate 3.6.x. When I upgraded to Spring 3.1 and Hibernate 4.0, the following exception is thrown:
Is there any ...
2
votes
2answers
125 views
using a <jee:jndi-lookup string inside an instance of PropertyPlaceholderConfigurer
Environment: Windows server 2003, Spring 3.0, Tomcat 6
How can I reference a JNDI property inside a PropertyPlaceholderConfigurer?
Specifically, I'm using JNDI to look up a java.lang.String that ...
2
votes
1answer
147 views
No AuthenticationProvider found for UsernamePasswordAuthenticationToken
my web.xml config is
<filter>
<filter-name>springSecurityFilterChain</filter-name>
...
2
votes
2answers
122 views
@EnableTransactionManagement annotation with 2 transaction managers
I am using @Configuration annotation for configuration of spring instead of xml file. I am configuring 2 datasources with different session factory and different transaction managers. I am stuck with ...
2
votes
1answer
73 views
Can we log inside a method using AOP?
I want to log some statements in my method using AOP.
I am able to define the pointcuts, advice for method starting, ending, exception scenarios.
Can we log in between the method at some point ...
2
votes
2answers
113 views
Spring 3 MVC - Map request parameters with prefix to a single bean
I have the following GET request:
/api/search?filter.operation=Ping&filter.namespace=
Please note the parameter names include a prefix (filter. operation, filter. namespace).
Then, I have the ...
2
votes
2answers
100 views
Spring 3.0 cannot get custom Annotation at runtime
I am working with spring and tried to add a custom Annotation to an Entity-Bean.
All I want to do is, accessing the fields with the custom annotation @ runtime via reflection.
The Problem is, that ...
2
votes
2answers
184 views
How to programmatically log user in with Spring Security 3.1
What's the proper way to programmatically log a web visitor in under a particular username in Spring and Spring Security 3.1? It seems the way I was doing it under 2.5 has changed a little. I'm sure ...
2
votes
1answer
183 views
Spring 3.0 and Maven
I'm trying to configure Spring 3.0 with Maven. I've read http://blog.springsource.com/2009/12/02/obtaining-spring-3-artifacts-with-maven/
In my pom.xml I've defined the following repositories:
...
2
votes
2answers
793 views
Connecting to JMX server in spring throws exception!
So when I try to connect to jmx from jconsole I get this exception:
Caused by: java.rmi.ConnectException: Connection refused to host: 78.84.17.116; nested exception is:
...
2
votes
2answers
907 views
struts2+spring3: passing a variable from action to jsp (javascript code)
First of all, thank you very much to all these that are trying to solve our problems in this forum;)
I am developing a web application with struts2+spring3. And I have a question about how to pass a ...
2
votes
1answer
180 views
Generate full XML configuration from Spring 3 annotations
Is there is a way to generate full XML configuration file based on Spring 3 annotations scattered all over the classes?
Ideally, I'm looking for a tool that can "parse" a Spring 3 project and output ...
2
votes
1answer
494 views
Creating unitary tests in Spring 3
I'm starting on testing applications in general and I want to create several tests to learn Mockito in Spring. I've been reading several information but I have some general doubts I'd like to ask.
I ...
2
votes
1answer
330 views
spring RequestHeader annotation on model object?
Can I put @RequestHeader on a model object property? I.e.
class MyModel {
String ua;
public void setUa(@RequestHeader("User-Agent") String ua) {
this.ua = ua;
}
}
This works ...
2
votes
3answers
292 views
How to enable @Required?
How to enable the @Required annotation in Java (Spring 3.1) ? Not in a xml, but in through Java. Also under which annotation I put this enabling? Under @Feature (in @FutureConfiguration or @Bean (in ...
2
votes
1answer
566 views
Upgrading to springframework.scheduling.concurrent?
As of Spring 3.0 the ScheduledTimerTask is deprecated and I can't understand how to upgrade to org.springframework.scheduling.concurrent.
<bean id="timerFactoryBean" ...
2
votes
1answer
361 views
Spring 3, Java EE 6
I'm learning Java EE 6. I've seen how much progress it has achieved in this release of the umbrella specification. EJBs 3.1 are far easier and more lightweight than previous versions, and CDI is ...
2
votes
2answers
2k views
Set Hibernate session's flush mode in Spring
I am writing integration tests and in one test method I'd like to write some data to DB and then read it.
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = ...
2
votes
2answers
1k views
Autowiring a service into a validator
This example is a bit contrived; I've simplified it to remove extraneous details and to focus on the problem I am having. I have a validator that looks like this:
@Component
public class ...
1
vote
1answer
58 views
spring 3.1 with hibernate 4: No Session found for current thread in web application
In my web.xml
openSessionInView
org.springframework.orm.hibernate4.support.OpenSessionInViewFilter
<init-param>
...
1
vote
0answers
39 views
Spring 3 @ImportResouce location from System properties
Is it possible to use the @ImportResource annotation with a system property specifying the file location?
This doesnt work:
@ImportResource("${properties.location}")
public class Config {
...
}
...
1
vote
1answer
43 views
Ajax REST call to web app with spring 3 and Tiles 2
I have a webapp which is built using spring 3 and tiles 2 (not RESTful). I am using UrlBasedViewResolver to display views
my application-servlet.xml
<beans ...
1
vote
4answers
333 views
No Session found for current thread (Spring 3.1.X and Hibernate 4)
I'm trying to set up my project using Spring 3.1 and Hibernate 4. I've been following some tutorials online. I'm getting a strange error that according to the spring forums should have been fixed ...
1
vote
0answers
21 views
Apache Tomcat 6 keeps the old application URI
I know, this is a very noob question but it is really affecting my productivity.
I'm developing a Spring 3 Web Aplication with STS 2.8.
When I change the RequestMapping value (the URIs I map my ...
1
vote
2answers
62 views
How to generate URI inside a controller in Spring 3
I use spring 3.0 and I have a really simple question but didn't find any answer on the internet. I want to generate a path (an URI) just like in my JSPs:
<spring:url value="/my/url" />
But ...
1
vote
3answers
31 views
Spring Configuration Init Method
How can I tell Spring to run that init method? I need to get the Proxied Async class and do some initialization with it.
@Configuration
@EnableAsync
public class Config {
@Bean
public AsyncBean ...
1
vote
1answer
41 views
Spring Async - Cant get async bean
ApplicationContext ctx = new AnnotationConfigApplicationContext(Config.class);
AsyncBean session = ctx.getBean(AsyncBean.class);
Caused by: java.lang.ClassCastException: $Proxy14 cannot be cast to ...
1
vote
1answer
93 views
eventlisteners using hibernate 4.0 with spring 3.1.0.release?
These jars are both new released and have the latest solutions for Java EE applications. But I have a problem on specifiying hibernate listeners in hibernate.cfg.xml.
Before spring 3.1.0, ...
1
vote
1answer
87 views
Need understanding of spring.handlers and spring.schemas
I have some questions derived from a problem that I have already solved through this other [question]: Unable to locate Spring NamespaceHandler for XML schema namespace ...
1
vote
1answer
79 views
Difference between dispatcher-servlet and spring-servlet
As the title says what is the difference between dispatcher-servlet.xml and spring-servlet.xml They seem very similar in terms of structure. When should one be used over the other ?
1
vote
1answer
218 views
determine target url based on roles in spring security 3.1
In spring security 3.0, we are having AuthenticationProcessingFilter class, in which we were using determineTargetUrl() method, which returned the url based on different roles.
Now, we are moving to ...