Tagged Questions
0
votes
1answer
27 views
Spring annotation based configuration change
I have a spring MVC (3.1) web app using Hibernate that is all working correctly - today, I have tried to move the configuration completely over to annotation based config (only using xml for the ...
0
votes
1answer
18 views
Getting Exceptions while persisting data
Hi I am getting the below mentioned exception while persisting the data
18:23:50,385 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/IOCS].[mvc-dispatcher]] ...
0
votes
1answer
24 views
@Scheduled task does not start
I am trying to use the @Scheduled feature. I have followed this and this tutorials but I can not get my scheduled task to be executed.
I have created a worker:
@Component("syncWorker")
public class ...
0
votes
1answer
32 views
create beans with annotation spring
In struts2 i almost did not use any xml configs and used much of annotations for MVC. I build a small application in that way using struts2. Now i want to develop same project using spring 3.2. Now i ...
0
votes
1answer
42 views
I/O failure during classpath scanning in spring MVC
Hi I am new to Spring and I am trying to do a simple spring mvc application which accepts values from customer form and displays the same in the same in the UI. Now the problem is when I try to ...
0
votes
1answer
66 views
Spring MVC data binding diff in javabean and @RequestParam boolean request parameter
Spring MVC support request parameter to javabean. But when I want to bind boolean,
It is still not work in javabean.
If the code in controller is:
public void test(@RequestParam(value="isCheck") ...
0
votes
1answer
51 views
autowire unmanage beans using context:component-scan
with reference to the below example,
Autowiring Unmanaged Beans Annotated With @Component
It states that you are required to register the bean in xml file and then only you can wire it in your Java ...
0
votes
1answer
20 views
BindingResult isn't detecting annotation based constraints and errors
The validation errors don't show up for some reason. In fact, the binding result doesn't return any errors. My bean is as follows:
@NotBlank
@Size(min = 5, max = 20, message = "User ID must be 5 to ...
0
votes
1answer
16 views
Subclass attributes are not populating in the superclass's database table as columns
I have two boolean values in the subclass of a hibernate annotated superclass along with other few attributes:
private Boolean currentLoan;
private Boolean unpaidFine;
@Column(name="current_loan")
...
0
votes
1answer
75 views
Autowired annotation in Servlet Spring
I have problem (when i'm calling method from another component class) with NullPointerException like this:
ERROR [UploadServlet] - Servlet.service() for servlet UploadServlet threw exception
...
0
votes
1answer
64 views
@Valid annotation - This annotation disallowed for this location
I have controller method that has @Valid annotation to enforce JSR303 Bean validation.
But when I just give @Valid is shows"
This annotation @Valid is disallowed for this location
I can get rid of ...
0
votes
1answer
64 views
spring mvc annotation - I can not mapping url to controller, Help me, please
I have .jsp page: index.jsp, that has form with link:
<form name="firstForm" method="get" action="list.form">
//-//-//
<a href = "removeFromStorage?id=<%=index %>">Remove ...
1
vote
2answers
49 views
Wiring Spring constructor through annotations
I am wiring a class with the help of Spring annotations :
public class MyClass {
@Autowired
private B b ;
@Value("${foo}")
private String c ;
@Value("${bar}")
private ...
1
vote
1answer
53 views
How to redirect HTTP Status 405 - Request method 'GET' not supported to another page
I am building an application and I want to do a validation in which when user tries to access a POST method he should be redirected to a new Page. For example when I Login, the username and password ...
1
vote
2answers
69 views
mvc:annotation-driven does not work in spring
I have the <mvc:annotation-driven/> annotation which errors out. The error I get is :
The matching wildcard is strict, but no declaration can be found for element 'mvc:annotation-driven'.
When ...
0
votes
1answer
169 views
Spring 3.2 properties file auto-wiring fails
I have problems adding properties file to a spring 3.2.2 web application.
My Web.xml:
<servlet>
<servlet-name>spring</servlet-name>
...
2
votes
2answers
113 views
Advantages of using spring stereotypes?
I am developing a web application using spring-mvc.
Now the @Controller, @Service and @Repository stereotypes are available.
I found @Controller particulary useful, specially because I am using
...
1
vote
0answers
53 views
missing annotation package in spring-modules-validation-0.8a source file
I have downloaded
spring-modules-validation-0.8a-sources.jar and spring-modules-validation-0.8a-
sources.jar.
In spring-modules-validation-0.8a-sources.jar there is package name annotation with ...
0
votes
1answer
155 views
Difference between @ActionMapping,@RequestMapping,@Rendermapping
The differences between @RequestMapping, @ActionMapping and @RenderMapping are not very clear to me. It seems that all of the above ultimately map a request url to an actual method in the controller. ...
0
votes
0answers
12 views
Why spring annotations are not turned on by default
In Spring MVC, we need to do <context:component-scan> for the spring container to recognise annotations. But in Java 1.5, we don't need anything special. annotations are turned on by default. Is ...
2
votes
2answers
76 views
SpringMVC: Variables in Annotations
I have the following controller defined:
@Controller
@RequestMapping("/test")
public class MyController extends AbstractController
{
@Autowired
public ...
2
votes
1answer
58 views
Spring MVC: Ambiguous RequestMappings after moving to JavaConfig
After moving from XML setup to a JavaConfig setup many of our RequestMappings have broken and now return ambiguous method errors. Our methods rely on @PathVariable's with regular expressions to ...
0
votes
1answer
64 views
Situations to use Annotations Vs XML configuration in Spring?
Sorry to ask this question which may be already asked in Stack Overflow for different situation.
I searched a lot in Stack overflow and google . But couldn't find a reliable and a well suitable ...
0
votes
0answers
94 views
How to get spring MVC to completely ignore the Accept Header
I have a pretty standard Spring MVC configuration using and .
I have a login page wired up to login.html using the following:
@RequestMapping(value = "/login.html", method = RequestMethod.GET)
...
0
votes
1answer
53 views
how to use @ContextConfiguration to configure values from another project
I configure something like this when the files are in the same project in spring
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
but I want to configure the few files ...
0
votes
2answers
63 views
Storing session data in controller
I'm new to Spring. I'm working on a MVC application that would works as follows:
1) user fills the form with data necessary to create the connection to some service
2) controller gets the data from ...
0
votes
1answer
325 views
no declaration can be found for element 'mvc:annotation-driven'
I have the requirement of returning JSON/Xml data from my controller.From what i found,I needed @ResponseBody in my method and for that i need enabled.I have tried all sorts of RnD but am still ...
1
vote
3answers
66 views
Spring params is not working
Annotation with spring params is not working.
@RequestMapping(value = "/login", method = RequestMethod.PUT)
public @ResponseBody ResponseMsg login(@RequestParam String userName, @RequestParam String ...
0
votes
2answers
196 views
Hibernate: Found two representations of same collection
I have a Spring MVC project, with Hibernate annotation entity mapping. Up until now the database was created alright, saving new objects went on without problems. Until I added a new entity class.
...
0
votes
0answers
105 views
Invalid <url-pattern> in servlet mapping how to remove this error
i am using this function for get request param spring3 mvc and my url is
localhost:8080/karmaFriend/register/abc/wq/abc@abc.com
@RequestMapping(value = "/register/{username}/{password}/{email}", ...
1
vote
2answers
194 views
Some clarification about Spring @Transactional annotation on a method
I am quite new in Spring world and I have developed a simple project that use Spring 3.2.1 and Hibernate 4.1.9 to implement a DAO. The project work correctly but I have some doubts about the use of ...
1
vote
1answer
165 views
Spring Logging using custom annotation
I want to write a custom annotation, say @loggable, which when declared at method level will display some logging message to the user about the current method. How would I go about this? Is this ...
0
votes
2answers
128 views
How to declare a DAO variable using an interface but put in it a concrete implementation in Spring Framework?
I am studying how to integrate Spring Framework with Hibernate and I have some doubt about it.
I have develop a personal example that work well but I am not sure about the architecture of this ...
0
votes
3answers
143 views
Some doubts about the use of **@Autowired** annotation and interface declaration in Spring Framework
I am quite new in Spring framework and I have some questions about the use of @Autowired annotation and interface declaration.
Referring to this example:
...
0
votes
2answers
84 views
Using Spring AOP 3.1.0 to set service instance using method argument
Hi i am new to Annotation and Spring AOP. below is what i am trying to achieve
public interface Service {
public void process(String ServiceName, Bean bean);
}
public class ServiceImpl1 ...
0
votes
0answers
40 views
Need help getting lookup from MySQL with Hibernate working after using Hibernate create POJOs
I had a project that is using Spring, Hibernate and mySQL and it works working great until my firm wanted to use only classes that came out of Hibernate reverse engineering. Trying to find a way to ...
0
votes
1answer
75 views
Is there any way to add cookie in method with @ResponseBody annotation?
I build my web application based on Spring MVC and come across a problem whilst trying to add a cookie in a method handling an ajax request.
I realized that method with @ResponseBody (in my example ...
0
votes
0answers
46 views
how can annotated aspectJ realize AOP on annotated controller in Spring mvc?
I've searched a lot of methods from google, but none of them worked well! My code snippets are as follows:
Annotated Controller:
@Controller
@RequestMapping("/user")
public class UserController {
...
0
votes
1answer
167 views
Lazy @ModelAttribute in Spring MVC
Is there such thing like lazy model attrubute annotation in spring?
below peace of code to explain what im looking for
@Controller
class MyController {
private boolean hasValue=false;
...
0
votes
1answer
292 views
BeanNotOfRequiredTypeException
I'm still new to Spring MVC and while building my test project, I got this message from Tomcat logs:
SEVERE: Exception sending context initialized event to listener instance of class ...
0
votes
1answer
380 views
ViewResolver using java annotation
I would like to know is it possible in spring 3.1.1 to configure view resolver using java annotations.
I am done with all configurations using java annotations but stuck at view resolver.
Please put ...
1
vote
2answers
169 views
ignored Security annotations in spring mvc
I'm trying to configure spring secure annotations, I already managed to set spring security configuration in xml(configured by intercept-url elements), but now I'm want to use security annotations in ...
0
votes
1answer
176 views
Some information about annoting a method parameter with @ModelAttribute in Spring MVC
I am studying on the Spring MVC Showcase project, dowlodable from STS dashboard
I have the following situation that is not completly clear for me:
I have the following form:
<form ...
0
votes
3answers
113 views
Spring MVC and annotations, how to do a validator in the case of a form that will contain different fields depending of a combo box
I am trying to accomplish the following:
I have a form that starts with a combo box, let's say that the user will have to pick either "Student" or "Teacher".
Both "Student" and "Teacher" will have ...
1
vote
1answer
406 views
Some information about produces attribute inside @RequestMapping in Spring MVC
in the Spring MVC Showcase example (dowlodable from STS dashboard) I have the following situation.
In my view I have the following link:
<li>
<a ...
0
votes
0answers
42 views
What are the differences in the managment of these 2 HTTP Request in Spring MVC?
In this period I am studing the Spring MVC Swhocase Example downlodable from the STS dashboard.
Now I am looking the "Response Writing" section of this example and I have some doubt about the ...
0
votes
0answers
174 views
Differences between two method that return “text/plain;charset=UTF-8” String in Spring MVC
in this period I am studing the Spring MVC Swhocase Example downlodable from the STS dashboard.
Now I am looking the "Response Writing" section of this example and I have some doubt about the ...
0
votes
0answers
288 views
Can we use just @RenderMapping annotation and remove @ActionMapping annotations in portlet controller
In my spring portlet controller class, there is a method annotated with:
@RenderMapping(params = "action=action1").
This method returns a String which is the name of a jsp. This is good because a ...
2
votes
1answer
131 views
Spring autowire issue
i am running a unit tests and uses a Service class to perform some business logic. however, the unit tests fails saying that the service class is null dispite setting up the Autorwire annotations for ...
0
votes
1answer
431 views
How is used @RequestAttribute and @ModelAttribute annotation in this Spring MVC showcase example?
I am pretty new in Spring MVC.
In this period I am studying the Spring MVC showcase example dowlodable from STS dashboard.
I have some problemto understand how Custom Resolvable Web Arguments are ...


