0
votes
0answers
12 views

Create Spring 3 annotation that check Session for object and redirect the user

I'm used to implement custom HandlerMethodArgumentResolverComposite for my projects, but now in some methods I have the repetitive code block ... if (param != null){ return ...
1
vote
1answer
44 views

Ensure that web service handles exceptions and always returns a valid response

I am developing a web service, no matter what, the response should always be valid, and I mean valid as in a valid format. That means that if the web service is expected to return an XML matching a ...
0
votes
1answer
13 views

WARNING: No mapping for springapp1 welcome.htm in DispatcherServlet with name springapp1

I have created a simple jsp page which is being retrieved by the controller. But when I retreive this url localhost:8080/springapp1/welcome.htm, I am getting the following error in tomcat: I am ...
0
votes
1answer
28 views

How to upload List object into Model in Spring?

So, I've got the following method in the Controller: @RequestMapping(value="/modules.htm",method = RequestMethod.GET ) protected String modules(ModelMap model) throws Exception { ...
3
votes
2answers
73 views

Can Spring MVC be used to implement MVC pattern in Swing applications?

I was wondering if Spring MVC can be used to implement MVC pattern in Java Swing Applications. I've done some study and found Spring MVC to be used for web development. Is there any way Spring MVC to ...
2
votes
1answer
430 views

No Spring WebApplicationInitializer types detected on classpath

My Eclipse project is suddenly no longer deploying properly. I can't trace it to any particular change I've made to the environment. I have tested with multiple source-controlled projects and they ...
0
votes
1answer
107 views

Integration Tests of Spring MVC controller

I have a controller which returns XML data in response of a call. Below is the code @RequestMapping(value = "/balance.xml",method = RequestMethod.GET,produces="application/xml") public ...
1
vote
1answer
66 views

Building an scalable Spring MVC application [closed]

I'm trying to build a web application using Spring MVC. I would be using it to server GUI as well as JSON content. Has anybody deployed such a solution and can vouch for it that it works? Any ...
-7
votes
3answers
65 views

how to learn principles of model view controller architecture? [closed]

my question is not specific to a language or framework. but i want to learn fundamentals behind mvc pattern and designing principles behind an mvc application development. so can any one suggest me a ...
0
votes
1answer
202 views

To map a database view with no primary key, in hibernate xml mapping

I have created a view which will be used for fetching the data only(readonly) View : Grid_View > My Hibernate hbm file <hibernate-mapping> <class name="hibernate.domain.View" ...
0
votes
0answers
35 views

How to get Multiple Foreign Key of the Same Entity in T4 Template using Package Manager

We are not able to get multiple Foreign Key of the same Entity in T4 Template using Package Manager. for example in the model shown below, both Created_by and updated_by are referring to the same ...
0
votes
1answer
30 views

How to have Json data available to a html view and its javascript code using a Spring mvc controller

I use a Spring MVC controller method in order to display a html view and that view requires JSON data that is available in the model i.e. a collection/array of postcodes. I thought of outputting the ...
0
votes
1answer
71 views

What is the purpose of using @ModelAttribute

Hi i was wondering what is the purpose of using @ModelAttribute why use @RequestMapping(value="") public String index(@ModelAttribute("before") Before b) { ...
0
votes
5answers
869 views

404 - Request resource is not available - Spring MVC

I'm trying to use Spring framework in my website but I'm having troubles while trying to set it up. I know a lot of people has asked something similiar to my question, but I couldn't have my problem ...
0
votes
1answer
17 views

CustomPropertyEditor the right way

have a spring mvc web app and a form with a nested object which is a list. for the that nested object i need to do something like this binder.registerCustomEditor(List.class, ...
0
votes
3answers
46 views

Can I access the same controller multiple times in one view without changing the view?

I am using Spring MVC. I have a view that dynamically populates 2 dropdown lists based on queries called from the controller. I want to dynamically run a query based on the first dropdown selection ...
0
votes
0answers
181 views

BindingResult does not show any errors when there is an error

I am using annotation based validation for one of my forms and I am not able to show any errors using the form:errors tag I used in JSP file. When I try to debug it, I found out that the BindingResult ...
0
votes
1answer
387 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 ...
0
votes
1answer
235 views

Write json object with controller using rendered jsp

I use Spring MVC. I want to render some jsp by forwarding to it. And then I want to write the result to json. For exmple I want to render my complex jsp and on exit I want to get: ...
1
vote
1answer
159 views

i'm dynamically generating css and js using jsp/jstl/spring. How to place this result in link tag at head section. not in script tag in head section

I'm generating css in jsp and the output is: <style type="text/css"> body{background: #ffffff url('<c:url value='/resources/images/logo/logo_small.png'/>') no-repeat scroll center ...
0
votes
0answers
178 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
1answer
153 views

Hire Spring MVC databinder

I read nice comprehensive explanation of spring data binder here: http://stackoverflow.com/a/3705855/1828986 My problem needs little bit more knowledge, let me highlight it: I have Person object ...
1
vote
1answer
331 views

Can't show proper error message after validation failure in Spring MVC

I just started using spring MVC and unable to show proper error message on validation failure. Controller is : @RequestMapping(value = "/MobiusDashboardWebsiteContent/csiBatchSubmission", ...
3
votes
3answers
318 views

Reflectively getting list of Spring MVC controllers matching specific url

How to reflectively get list of all controllers (best if not only annotated, but also specified in xml), matching some specfic url in your Spring MVC application? In case of annotated-only, ...
0
votes
3answers
107 views

getting stack over flow during return page from spring mvc controller

I have spring mvc controller , contain method like @requestmapping("jsps/welcome.jsp") public String handleRequest(){ system.out.println("inside the handler"); return "welcome";} when I am trying ...
0
votes
1answer
375 views

Spring MVC, capture List of objects like @ModelAttribute

I have Test class and i have jsp page that contains inputs binded to the list of tests objects. I want to take my list of tests back from my jsp with edited information. My Test Class is: @Entity ...
3
votes
1answer
143 views

Returning a Spring Model in a @ModelAttribute annotated method

Can I use a Spring model as a model in a method annotated with the @ModelAttribute? I get an error saying it can't find the attribute in the model. Here is the method where I add my object to the ...
1
vote
1answer
104 views

about spring mvc error no class def found

I am getting error NOClassDefFound for org/codehaus/jackson/map/objectmapper , my spring xml file like the following <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
2answers
162 views

Crud operations in one controller is good or bad MVC behavior?

I need to know is the next against MVC or not? I have models A,B,C, and there are two main controllers CMS and Site. My Team leader say we'll just put the crud operations for A,B,C (gets to Site) and ...
0
votes
1answer
508 views

No mapping found for HTTP request with URI [/st/test.htm] in DispatcherServlet with name 'dispatcher'

I am trying spring framework and am new to it. Getting following logs in my spring application with nebeans Nov 27, 2012 8:20:16 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound ...
0
votes
1answer
75 views

Spring MVC returning XmlBeanDefinitionStoreException when trying to use mvc:resources or mvc:default-servlet-handler

I just started to study Spring using the 3.0.0 RELEASE version, and when I declare the tag mvc:resources or mvc:default-servlet-handler the server returns the XmlBeanDefinitionStoreException, telling ...
-2
votes
3answers
177 views

Spring Form Handling Form Exeption [closed]

When i go to form site Spring thorow exeptions: 01:34:09,257 ERROR [org.springframework.web.servlet.tags.form.LabelTag] (http-localhost-127.0.0.1-8080-1) Neither BindingResult nor plain target object ...
0
votes
2answers
582 views

java.util.MissingResourceException: Can't find bundle for base name views, locale en

I have a file called views.properties inside my src/main/webapp folder. and I have the following line inside my court-servlet.xml file. The court-servlet.xml is located in src/main/webapp/WEB-INF ...
0
votes
2answers
2k views

Spring MVC configuration considering web.xml

I am new to Spring MVC and want to know how actual flow works. I found few example of Spring MVC and generally every example has extra redirection ie in web.xml, welcome-file tag will send the ...
0
votes
1answer
742 views

Difference between BeanNameUrlHandlerMapping SimpleUrlHandlerMapping

What is the difference between Spring BeanNameUrlHandlerMapping and SimpleUrlHandlerMapping? After going through some site I understand that BeanNameUrlHandlerMapping is the default HandlerMapping ...
2
votes
3answers
657 views

Controller belongs to the Presentation layer?

I heard that controller belongs to the presentation layer. How is it possible? I thought that : view is for presentation model is for business logic controller is for controlling logic Is there ...
0
votes
2answers
746 views

Intercepting the @responsebody in spring mvc

I have a Spring MVC web application with conroller like below : @Controller public class ActionRestController { @RequestMapping(value = "/list", method = GET) @ResponseBody public List<Action> ...
0
votes
1answer
293 views

Invalid working of #springFormSingleSelect in velocity template

I am making spring mvc application and using velocity templates for views.There is form for filling it by the data and in this form i am using #springFormSingleSelect.Form works fine when data is ...
2
votes
1answer
795 views

How Spring's contextConfigLocation xml and Controller class are connected?

i'm a beginner in Spring MVC.So i didn't understand the flow of control is going from controller class to training-servlet.xml and vice-versa. contextConfigLocation file(training-servlet.xml) is ...
0
votes
1answer
409 views

Issue integrating dojo and Spring JS

I am getting JS error and dojo not getting reflected while developing spring MVC application along with dojo i am getting the mentioned issue. The configuration steps that i followed are below. In ...
0
votes
1answer
70 views

Spring Views - Combining elements into views

Currently, in our deployment we have a abstract type Component which represents a part of our Page, basically an element such as a Question, which can have multiple choice, a text box or any other ...
0
votes
0answers
140 views

ViewModel in Java (Spring)

I've read much about the usage of ViewModel in ASP.Net MVC, and in fact used the pattern myself. Now that I'm looking at MVC in Java (specifically using the Spring framework), it doesn't seem to get ...
0
votes
4answers
210 views

Is it a good idea to open a hibernate session in controller in MVC architecture?

I have a pretty complex domain entities. I want to have lazy loading for all of associations. So the scenario is like this: 1.get an instance of my business logic. 2.get an object o from business. ...
0
votes
2answers
121 views

Will MVC framework help me clean my web pages? [closed]

I am new to web development and have been working on my first web project using Java/JSP for some time now. For this project I decided to (probably, naively) not to use any web framework and ...
0
votes
2answers
337 views

Spring Controller returns unformatted json

I have configured my application to return html, json or xml views. html and xml views are fine but there is a problem with the json views. The returned json is always prefixed with an "{} ...
0
votes
2answers
977 views

@RequestParam is null (Spring MVC)

I'm trying to add an edit function to my web app but I'm having some problems using @RequestParam. The parameter it is getting is null which it shouldn't be. I'm hoping someone can point out where I ...
0
votes
2answers
1k views

Spring Controller's URL request mapping not working as expected

I have created a mapping in web.xml something like this: <servlet> <servlet-name>dispatcher</servlet-name> ...
2
votes
1answer
662 views

Spring MVC: How to retrieve data apart from the Model submitted to a view

I have the following requirement. I submit a Model object to a view as follows... @RequestMapping(value ="/addItem", method = RequestMethod.GET) public ModelAndView showContacts() { ...
0
votes
2answers
943 views

spring mvc:resources makes annotated controllers not available

I am having problem using mvc:resources in spring 3.1 configuration. Initially i was working on the project that integrates spring 3.0, JPA, on tomcat 6. On tomcat 6 server, i used the following ...
2
votes
1answer
250 views

Spring MVC - using Poincuts to fill Spring MVC partials with dynamic data

How do you fill reusable partials (like the header) in a Spring MVC web app with dynamic data like username every time a certain group of controllers are called (page controllers) but not for others ...

1 2 3