Tagged Questions

Spring Annotations concerns the use of all Annotations supported by the Spring Framework.

learn more… | top users | synonyms

8
votes
1answer
2k views

AbstractWizardFormController using Annotated @Controllers

In Spring Framework , AbstractWizardFormController seems deprecated. How to implement multiple pages form in the Spring MVC Framework. (I am not using webflow) any example or pointer would help ...
6
votes
1answer
255 views

spring 3.1 @Cacheable example

I am new to spring annotation and i want to create a sample example which shows the use of @Cacheable annotation in spring 3.1 does any one have guidance to create this ?
5
votes
4answers
905 views

FactoryBeans and the annotation-based configuration in Spring 3.0

Spring provides the FactoryBean interface to allow non-trivial initialisation of beans. The framework provides many implementations of factory beans and -- when using Spring's XML config -- factory ...
5
votes
1answer
952 views

How to do Spring Lookup Method Injection with Annotations?

Is there any way to use Lookup Method Injection using annotations? Given the following class: @Service public abstract class A { protected abstract createB(); } In order to get it to work I ...
5
votes
2answers
2k views

Testing Spring @MVC annotations

I ran into a problem the other day where a @Valid annotation was accidentally removed from a controller class. Unfortunately, it didn't break any of our tests. None of our unit tests actually ...
4
votes
1answer
116 views

Using Spring cache annotation in multiple modules

I have a util module that produces a jar to be used in other applications. I'd like this module to use caching and would prefer to use Spring's annotation-driven caching. So Util-Module would have ...
4
votes
1answer
310 views

Spring MVC controller inheritance and routing

In my Spring MVC webapp I have a generic RESTful controller for CRUD operations. And each concrete controller had to decalare only a @RequestMapping, for example /foo. Generic controller handled all ...
4
votes
2answers
395 views

Anyway to @Autowire a bean that requires constructor arguments?

I'm using Spring 3.0.5 and am using @Autowire annotation for my class members as much as possible. One of the beans that I need to autowire requires arguments to its constructor. I've looked through ...
3
votes
2answers
98 views

Is there a way in Spring to autowire all dependencies of a given type?

I'm using annotations-based wiring (ie @Configurable(autowire=Autowire.BY_TYPE)) for a given class, and I'd like to wire all beans of a given type into it as a list: application context: ...
3
votes
1answer
252 views

Correct usage subclassing a spring ContextLoader for testing

For the integration tests for my spring application with junit I am subclassing org.springframework.test.context.ContextLoader, because I want to use a already present XmlWebApplicationContext for ...
3
votes
1answer
358 views

Custom WebArgumentResolver like @PathVariable

I would like to use a custom WebArgumentResolver for id -> entity. Easy enough if I use request parameters: use the parameter key to determine the entity type and look up accordingly. But I would ...
3
votes
3answers
3k views

how to specify a bean as non lazy with annotations

Does anyone know how to specify a bean as non lazy when using annotations to configure the bean?
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
3answers
101 views

Spring @Transactional doesn't work with other annotations?

So my Spring education continues. Currently I'm trying to learn some of the annotations and the things they bring to Spring 3. So I've got a mini webapp that can connect to a DB and put stuff in ...
2
votes
2answers
93 views

Is it possible to use @Resource on a constructor?

i was wondering if it possible to use the @Resource annotation on a constructor? My use case is that i want to wire a final field called Bar public class Foo implements FooBar { private final ...
2
votes
1answer
600 views

How to schedule (and reset) a task programmatically with SpringFramwork?

There is a situation where I want to invoke a method after some predetermined time, say 30 sec or 5 min. Time needs to be configured at run time, means I should be able to change time dynamically ...
2
votes
1answer
5k views

Error creating bean with name 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping#0' defined in ServletContext resource

PROBLEM : I am creating a pointcut for execution of a method in a class . This class is a controller class and denoted by annotation @Controller and hence no bean is needed for the same which is ...
2
votes
1answer
754 views

Custom property editors do not work for request parameters in Spring MVC?

I'm trying to create a multiaction web controller using Spring annotations. This controller will be responsible for adding and removing user profiles and preparing reference data for the jsp page. ...
2
votes
2answers
3k views

Spring 3 MVC - form:errors not showing the errors

I am using annotation based validation but for one of the forms I am not able to show any errors using the form:errors tag. When I debug the method, I can see the BindingResult has errors, but for ...
2
votes
3answers
711 views

Spring MVC annotation config problem

I'm trying to improve my spring mvc configuration so as to not require a new config file for every servlet I add, but I'm running into problems. I've tried using this tutorial as a starting point, but ...
2
votes
1answer
700 views

Spring @RequestMapping and trailing slash

I am trying to map a method in a Controller using the annotation with URI template: @RequestMapping(value="/select/{customerNumber}/{resource}", method=RequestMethod.GET) It appears that this does ...
2
votes
2answers
3k views

How to get error text in controller from BindingResult

I have an controller that returns JSON. It takes a form, which validates itself via spring annotations. I can get FieldError list from BindingResult, but they don't contain the text that a JSP would ...
2
votes
2answers
275 views

Annotation based view mapping

I am trying to get my head around annotation based mappings and I am having some trouble mapping requests directly to jsp. Do all request have to go through a controller? Is it possible to make it ...
1
vote
0answers
22 views

Missing @XmlRootElement when creating a client from a wsdl

I have a question in regards to consuming a web service based on a third party wsdl file. I've taken the given wsdl and generated the 120+ java files required. This process was done by using xjc. ...
1
vote
1answer
116 views

Spring MVC 3.1.0 bug? After upgrade controllers are no more autodetected

I'm writing web application that uses Spring MVC to bind Spring beans with REST-like channels. I've created the configuration basic both on my previous apps (pure XML configuration) and example, ...
1
vote
4answers
62 views

Spring loading value from a POJO into an App context

Is it possible some way to load a value into a Spring appcontext.xml from a POJO? For example, I have a POJO that is something like, public class Settings { private String appSetting; ...
1
vote
0answers
177 views

org.hibernate.HibernateException: load is not valid without active transaction

I am getting the following error while load a user data. org.hibernate.HibernateException: load is not valid without active transaction I am using AspectJ compile time weaving and spring 3.O. and ...
1
vote
5answers
187 views

Is it possible to guarantee the order in which @PostConstruct methods are invoked?

I have a system which is using Spring for dependency injection. I use annotation-based autowiring. The beans are discovered by component scanning, i.e. my context XML contains this: ...
1
vote
2answers
79 views

Can't I use @Value annotation with @Transient annotation?

I have a class to map a table for using hibernate. There are some variable I want to ignore for mapping to use as constant. And I want to load constant value from properties so I code it like this: ...
1
vote
3answers
79 views

Which Spring annotation to use for Hibernate DAO class?

What Spring annotation should I use for Hibernate DAO classes so they could be found in scanning process? @Repository, @Service or @Component? I couldn't figure out the difference. I'm on Spring 2.5.6 ...
1
vote
3answers
88 views

What is the most appropriate way of injecting daos in services, services in controllers in Spring?

There are many annotations in the Spring framework like @Component, @Service, @Repository, @Service @Resource and @Autowired etc. What is the most appropriate way of injecting my daos in services, ...
1
vote
2answers
461 views

Can @PathVariable return null if it's not found?

Is it possible to make the @PathVariable to return null if the path variable is not in the url? Otherwise I need to make two handlers. One for /simple and another for /simple/{game}, but both do the ...
1
vote
2answers
1k views

Spring MVC Annotations

I've been over Spring's documentation a couple times, but I don't seem to be able to get @Controller, etc annotations to work. I am loading the dependencies and repositories in my POM (... are my ...
1
vote
1answer
294 views

java - Spring MVC: Redirect requests with old URLs to new URLs

I have changed URL style of one of my websites to RESTful: **Old URLs** **New URLs** /article/all.ab /articles /article/read.ab?id=345 ...
1
vote
1answer
146 views

Spring annotations : setting @sessionAttributes in @component class

Is it possible to set a session attribute in a manager class (class which is not a controller and is marked as @component)? The scenario is like this, from my Controller i'm calling a manager ...
1
vote
1answer
353 views

Manual recursive delete throws “deleted instance passed to merge” in hibernate

NOTE: I am using a J2EE Spring MVC + Hibernate with both using annotations for this. I have a file system modeled in hibernate with a hierarchy of folders and files in these folders. The folders ...
1
vote
2answers
761 views

No mapping found error using Spring MVC

All: I hope that you can help me. I am pretty good when it comes to working in an application that has already been configured and setup, but the flip side is that I am apparently not very good in ...
1
vote
1answer
509 views

Spring validation @AssertTrue

How do I display on a view jsp validation error message that occurs as a result of @AssertTrue annotation? It isn't tied to a specific field, but I am using it to validate a combination of fields. If ...
1
vote
2answers
543 views

Spring redirecting back to referrer

I have some resources in my application that require redirection to another resource (form) if some context information is not set. After the context gets set (requires two user steps), I need to ...
1
vote
1answer
563 views

Spring Annotation based Controllers and Duplicate Form Submission

How does one disable duplicate form submission on Annotation based controllers.
0
votes
2answers
40 views

Is there a Annotation in Apache Camel to load a specific RouteBuilder during a test?

Suppose I have several tests on the same RouteBuilder that is configured differently for each test. Now, a Spring test is supposed to: extend something like AbstractJUnit4SpringContextTests be ...
0
votes
2answers
46 views

Convert Spring XML-based to Java-Based Configuration

I try not to using any xml. <bean id="restTemplate" class="org.springframework.web.client.RestTemplate"> <property name="messageConverters"> <list> ...
0
votes
2answers
36 views

@SessionAttribute : When is the model initialized?

When I want a model in Session scope in Spring 3, I use the foll. annotation in a Controller:- @SessionAttribute("myModel"); However, this is just the declaration of myModel. At which point ...
0
votes
1answer
31 views

@ModelAttribute formed model cannot be used in another Controller

My UserController.java @Controller @RequestMapping("/userRegistration") public class UserController{ @RequestMapping(method = RequestMethod.GET) public String showForm(ModelMap model) { ...
0
votes
1answer
67 views

HTTPSessions and Spring

I'm developing a web application using spring. Here's the problem, say I have these three urls, www.sample.com/login.do www.sample.com/homePage.do www.sample.com/about.jsp What I ...
0
votes
3answers
207 views

Spring MVC @PathVariable and @RequestParam blank/empty in JSP view

I'm new to Spring 3 (3.0.6) and have been trying to get an incredibly simple controller/view set up, and just can't make it work. In my web.xml, I've defined a <servlet> called ...
0
votes
1answer
24 views

can I inject @transactional properties into annotation?

I have services that are defined in a Spring context file and we are injecting the transactional properties using EL: ... <bean id="basicStarTrans" class="java.lang.String"> ...
0
votes
1answer
197 views

How to register Spring @Configuration annotated class instead of applicationContext.xml file in web.xml?

I am using jsf and spring together in web application. I have configured datasource and session factory in one configuration class which uses annotations like @Configuration, @ComponentScan etc. I ...
0
votes
1answer
229 views

Spring MVC 3 and returning validation errors to page from @Valid

I'm tired. I've been working on a side Spring MVC project for the last two weeks and I've found the documentation to be misleading at best, and so I am now resorting to begging for help. Sooooo..... ...
0
votes
0answers
76 views

Spring 3 - parsing html standard date fails

I am trying to develope a conditional get in one of my controllers. Therefore I set the "If-Modified-Since" header on the client side. The problem is, that spring is not able to parse this date: ...

1 2