0
votes
0answers
47 views

what can one call the jsp file 2 controller files in java?

what can one call the jsp file 2 controller files in java?? This is Jsp File <form:form commandName="userProfile" method="post" action="createuserform.html" id="userForm" ...
0
votes
1answer
12 views

model data cannot be displayed in view

I've been following a simple hello world tutorial for the maven webapp archetype. however I ran into problems displaying the model's data in my jsp. hello.jsp <html> <body> ...
0
votes
1answer
22 views

(Spring controller) The requirement sent by the client was syntactically incorrect

I have the following jsp: <form:form method="post" commandName="fare"> <div><fmt:message key="createfares.name" /></div> <div><form:input path="name" ...
0
votes
0answers
41 views

Display content of a java.util.Map in JSP form, while using spring MVC

I have a object-String pair in the Map collection. I need to display object values as well as String on the table in the JSP along with radio button selection. How do I do this, as per my knowledge ...
0
votes
3answers
37 views

Reading the values from session attribute returns only the name in spring MVC

I have a form jsp and on submit it redirects to a success jsp. The inputs to the form elements are to be captured by a session attribute using a value object and rendered in the success page.The code ...
1
vote
1answer
121 views

Spring 3 AJAX POST request with @RequestBody and @ModelAttribute and @SessionAttribute used together?

Have a Java spring MVC web app, and am making a jquery ajax post request. My Controller is setup to receive and send json data. Everything works, the JSON string is well formatted, and the Controller ...
1
vote
2answers
53 views

How grails has implemented handler mappings?

I have been trying to mock grails' convention over configuration paradigm in a spring mvc application and i am finding it difficult to automate handler mappings. Basically i have a controller like ...
0
votes
2answers
99 views

Spring MVC - Spring Security - Controllers General Architecture - Best practices

Recently i am trying to learn Spring. I have created a simple webapp which basically should have 2 types of users: Customer Admin You can imagine the app as a classic shopping webapp, where admins ...
1
vote
1answer
64 views

Spring MVC SessionAttributes with ModelAttribute usage

I am trying to learn Spring MVC recently. It seems that i did not understand well the functionality of @SessionAttributes and @ModelAttribute annotations. This is a part of my controller: ...
0
votes
0answers
22 views

how to display 2 screens (controllers) on 2 tabs in SpringMVC

I have a web app (using springMVC). Lets say i have a screen which contains 2 links: a(for screen A) and b(for screen B), each link is handled by 2 different controllers. Currently, if i click on link ...
0
votes
0answers
57 views

How to make download function in spring mvc?

I have made an upload function and it runs well. It stores the uploaded file to "C:/apache-tomcat-6.0.36/webapps/Upload/" But, now I want to make this app be able to download the file. I have been ...
0
votes
1answer
104 views

Spring MVC Pagination PagedListHolder

I ma trying to implement pagination in my application. Presently i am trying to view only the first record before i implement the navigation, however i am getting an error and i am unsure if my ...
0
votes
2answers
82 views

insert an object to database with a controller and validator using Spring MVC 3

I'm trying to insert objects type "User" to the database but i get this error : org.apache.jasper.JasperException: An exception occurred processing JSP page /WEB-INF/pages/gestionUser.jsp at line ...
-3
votes
0answers
73 views

SpringMVC Looping through list data passed from the View [closed]

I have a View that accept a list of data that relates to a class. There are elements with the same 'path' and name. When the data is entered in the view the data is POST to the controller for ...
2
votes
1answer
63 views

Spring MVC request mapping conflict

I'm having an issue regarding @RequestMapping on classes. Say I have these two controllers: @Controller @RequestMapping(value="/controller1") public class Controller1 { ...
0
votes
2answers
78 views

Spring MVC URL mapping in controller For dynamic URLs

I have a page with part of a URL that is dynamic e.g. ...
1
vote
1answer
54 views

Spring Controller JSON

I have a Spring API that returns JSON, the controller methods builds the JSON string using StringBuilder and returns the JSON string which can be viewed as raw JSON in the browser. Is there a better ...
0
votes
0answers
103 views

How to integrate Spring MVC with Primefaces ? How to handle mapping betwwen Managedbeans of primefaces and SPRing MVc controllers?

I discover that it's possible to take and advantage of primefaces components and keep handling them in an MVC pattern like the way Spring MVC is handling voiews. So I'm wandering how can this happen ? ...
1
vote
2answers
64 views

Spring MVC — nothing happening on submit

I have the following form in my Spring 3.2 MVC application. The controller method is not being called. Here is my form. <form:form commandName="bulletin" method="post" ...
0
votes
3answers
99 views

Spring MVC controller custom parameter name

I have a Spring MVC controller. And I have in the method 50 parameters. All of the parameters have very specific name, for example: FOO[]. I don't want write 50 parameters in the method signature ...
-2
votes
1answer
48 views

How i can assign a object from another object in JSP?

I am using Spring MVC . And I have a method in controller which before returning a jsp puts a object in ModelMap. modemap.put("Members",members); Students is a POJO having a List and List. Now ...
1
vote
2answers
155 views

Spring 3.2 — 404 error calling a controller method from a link in a JSP

I'm trying to use a link in my JSP to pass a parameter to a method in my Spring controller, but I get a 404 error. Here is the relevant part of my JSP code. <c:forEach var="bulletin" ...
0
votes
0answers
83 views

Spring controller ModelAndView JSP mapping

Good day. I got a Spring controller named Admin: @Controller public class Admin { @RequestMapping("/admin/login/1/2") public ModelAndView adminLogin() { ModelAndView model = new ...
0
votes
1answer
40 views

Can I combine @controller and XML bean mapping in spring?

I currently have a @Controller declared in spring and have a bunch of mappings done like so: @RequestMapping(value = "foo", method = RequestMethod.GET) public ModelAndView foo() { ModelAndView ...
0
votes
3answers
70 views

More than one user in the same Controller Spring MVC

I'm starting to develop for Web and I'm using Spring MVC as my Server Framework. Now I'm wondering about creating variables in Controller class. I had to do it to manage some data in server, but now ...
1
vote
1answer
129 views

How to bind two string parameters from a request into one field type during data binding in a spring controller?

Let be my custom type (note that there is NO setters because this is an Immutable Value Object): class CustomType extends ValueObject { private String value; @NotNull public String ...
0
votes
1answer
90 views

Custom data binder in Spring 3 Controller

A spring 2 way for registering a custom data binder in a controller would be to override the createBinder method of the extended spring controller. What is the spring 3 way of doing this? We use the ...
0
votes
0answers
158 views

I want to get the form data set in a pojo in my controller using spring 3, as like struts1.2 approach

I have login.jsp as my welcome page/home page. Like struts1.2 approach I want data from my login.jsp(username and password) to be set in a pojo(LoginForm) and I need to access username and password ...
0
votes
1answer
116 views

Not able to render the request to another html from controller using angularjs + spring MVC 3.0

Logon.jsp <!DOCTYPE html> <html ng-app="angularspring"> <head> </head> <body ng-controller="LogonController"> <form> ...
0
votes
1answer
15 views

Concrete Class 'Inject' is throwing IllegalArgumentException

I have a service interface UserService and an implementing class UserServiceImpl. When I try to inject UserServiceImpl to a variable in a controller class, it throws an NoSuchBeanDefinitionException. ...
0
votes
2answers
326 views

HTTP Status 500 - Request processing failed; nested exception is org.hibernate.HibernateException: /hibernate.cfg.xml not found

I am a newbie to Hibernate and Spring and I am getting the above exception while executing the application. I am trying to fetch the values of a record from the database. Following is the exception ...
0
votes
1answer
110 views

hide and show a table column

I need to hide the last column which is checkboxes based on the model Object passed from spring controller. If the model value is "isAll" column should be hidden if any other value it should be ...
2
votes
1answer
84 views

Generic Spring MVC Controller with Inheritance

Can I do the following in Spring MVC Suppose I have the Base GenericController as follows with one request mapping "/list" @Controller public class GenericController<T>{ ...
1
vote
2answers
132 views

@ModelAttribute not works when a declared field is left blank

Below are my code... @RequestMapping(value = "/submitnewstory", method = RequestMethod.POST) @ResponseBody public String save(@ModelAttribute("storyInsertForm") StoryInsertForm uploadForm, ...
0
votes
1answer
120 views

Spring MVC Request processing failed

My spring MVC controller keep getting org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.NullPointerException My code is as followed: ...
0
votes
2answers
175 views

Redirect between pages - Spring MVC

I am beginning with Spring Portlet MVC but I believe this question also applies to Spring MVC. Let me show you this example @Controller @RequestMapping(value="VIEW")//this maps to Portlet Mode VIEW ...
0
votes
2answers
736 views

Spring MVC: list of checkboxes not returned to controller on POST

Why doesn't the server see my list of filled checkboxes? This question seems to be here asked many times, but the details are so different for each requester that it seems a different answer is ...
0
votes
2answers
237 views

Use multiple child Controllers against @RequestMapping defined in Parent class

I have a parent class P which defines one request mapping like this: public abstract class P { @RequestMapping(value = "/a/b/c", method = RequestMethod.POST) public String ...
0
votes
1answer
344 views

Bind errors on Spring MVC Controller and put in a BindingResult

When I try to do a "bind" in my class, it throws an exception, but how can I show an error on the form? Controller: @InitBinder public final void binder(WebDataBinder binder) { ...
0
votes
1answer
130 views

window.open() call not hitting controller first time

Please help me with this ridiculous problem. I am passing a URL from my js form by using window.open() function that will hit a controller method and also some path variable is included.. that is, ...
1
vote
1answer
426 views

Spring MVC - Controller method not getting called

Spring3 MVC - Controller class is getting called but not the controller method. Controller: package com.quizat.controller; @Controller public class QuizatController { public QuizatController(){ ...
0
votes
1answer
309 views

What is proper way to stream media with Spring MVC

I have a controller method that simply streams bytes for media (images, css, js, etc.) to the client. I first tried something like this: @RequestMapping(value="/path/to/media/**", ...
0
votes
2answers
211 views

spring mvc RequestMapping and redirecting to view

I have a code in MyController @RequestMapping("/hello.jsp") public void handleRequest() { System.out.println("hello.jsp"); logger.info("Returning hello view"); } ...
1
vote
0answers
296 views

How To Pass Dropdown Values As Command Object And Upload To DB using Spring Framework

new to Spring here. I have a scheduleLoad.jsp (below) that is to take user's dropdown list input and pass it to a confirmLoad.jsp screen and update the database. Select Year:<form method="post" ...
0
votes
0answers
64 views

Why am I losing my @PathVariable if my Controller method is intercepted by @AfterReturning?

My code is as follows: @Controller public interface SomeController { @RequestMapping("/{arg}") public ModelAndView someMethod(String arg); } @Component public class SomeControllerImpl { ...
0
votes
0answers
187 views

how to write Spring mvc project both for RESTful services and REST consuming client

I'm using spring mvc controllers for writing RESTful services. Everything is fine and restful services are working like charm but now i want to include rest consuming client in the same project i.e. ...
1
vote
1answer
241 views

Issue with making a controller method asynchronous with Spring 3.2.RC2

I am trying to test the latest asynchronous feature of Spring MVC controllers but I have not been able to get it to work. Here is the code for my async method: @RequestMapping(value = "/hello") ...
2
votes
1answer
232 views

Does it make sense to have an annotated Abstract Controller class - Spring MVC

Does it make sense to have an annotated (@Controller) Abstract class in Spring MVC driven container, basically would like to place most of the reusable methods such as exception handlers in the ...
2
votes
2answers
358 views

Returning null from a spring mvc controller method

I have read the Spring documentation and I was not able to find relevant information regarding the expected behavior of a Spring MVC controller method returning null (with a return type of String). ...
0
votes
1answer
59 views

Parameter not passed to contoller - Spring

I am at wits end here. This seems a very trivial thing but its not working. I have a jsp page that passes back to the server a Long (tournamentId) and a list of Objects. When I post the form, the list ...

1 2 3 4