Version 3.x of the Spring Framework, use [tag:spring] for general Spring related questions.
I have below annotation. MyAnnotation.java @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface MyAnnotation { } SomeAspect.java public class SomeAspect{ @…
java spring spring-aop spring-3 java-ee-7I have a requirement to pass a custom object using RESTTemplate to my REST service. RestTemplate restTemplate = new RestTemplate(); MultiValueMap&…
spring-mvc spring-3 rest-client resttemplateMy post method gets called but my Profile is empty. What is wrong with this approach? Must I use @Requestbody …
spring spring-mvc spring-3I'm trying to find the syntax for importing multiple spring xml context files using Spring 3 @ImportResource annotation. I have tried …
java spring spring-3I'm getting the above exception with Spring3 and Hibernte4 The following is my bean xml file <?xml version="1.0" encoding="…
spring hibernate spring-3 hibernate-4.xmy web.xml config is <filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.…
java spring spring-mvc spring-security spring-3EJB achieved many improvements in 3.x versions, Spring is also commonly used and version 3 is a good alternative. There are …
comparison ejb-3.0 ejb-3.1 spring-3I am playing with spring MVC 3.1 and testing different features. I wanted to verify following statement taken from @RequestMapping#value …
spring-mvc spring-3This is not a duplicate referenced question, because it is Spring specific. Whoever added that (3 years after the fact!) didn't …
spring rest glassfish glassfish-3 spring-3Can I use queryForMap if there are multiple rows returned by the query. For a single row, the below code …
java spring spring-3 jdbctemplate