Based on the Model-View-Controller (MVC) pattern, Spring MVC helps you build web-based applications that are flexible and decoupled from the underlying view technologies.

learn more… | top users | synonyms

0
votes
0answers
8 views

HOW TO USE BEANS IN MODEL Attributn Spring framework

Hello Might be it's a silly Question But I am new in Spring frame work. Please help web.xml <display-name>demo name</display-name> <context-param> ...
0
votes
0answers
6 views

Spring MVC, loading just part of the page (form)

I'm currently working on a web app, using Spring MVC and JSPs as views. The thing is that within this app, at everytime, a header should be shown holding options to navigate, like the old Menus in ...
0
votes
0answers
24 views

Upload file in a location specified in tomcat server.xml conf

I have an upload form and I would like to save the file in my filesystem. First, I tried to create the path where the uploaded file will be saved: File dest = new File("/front/uploads/images"); ...
0
votes
0answers
13 views

spring mvc dynamic menu using tiles

I'm developing a web project with spring mvc with tiles framework. I have tiles.xml like below: <definition name="base.definition" template="/WEB-INF/jsp/layout.jsp"> <put-attribute ...
0
votes
1answer
2 views

Configure Spring JNDI datasource with DBCP and connection parameters

I am using Spring 3 and attempting to use a JNDI (named) data source with DBCP connection pooling. I would like to be able to set pool parameters, but my <bean id="dataSource" ...
0
votes
0answers
14 views

Use Spring 3 filters to embed timestamp in resource paths?

Would it work to setup some filters using Spring 3 MVC where the paths for javascript files and css files are modified when streamed to the client, by embedding some timestamp in the filename. And ...
0
votes
1answer
16 views

Spring Camel Email Configuration Issue

I am trying to send email from my spring mvc based web application using apache camel. But my tomcat is not getting up because of some wrong configuration i guess. Can you please help me? ...
1
vote
5answers
38 views

Spring configuration not finding with Configured name

The following are my configuration file i configured WEB-INF/classes/applicationContext.xml but it searching for WEB-INF/applicationContext.xml <?xml version="1.0" ...
-1
votes
1answer
19 views

context:component-scan takes more than 2 minutes to complete

I am new to springs. I tried using context:component-scan to scan my package like <context:component-scan base-package="org.example"> However it seems very time consuming and takes more than ...
-1
votes
1answer
16 views

Getting MM field extra in my date

I am developing a small application,in which am fetching the data as date in this format yyyy:MM:dd HH:mm:ss.MM but in my data base date field has stored as in this format yyyy:MM:dd HH:mm:ss can any ...
1
vote
0answers
18 views

Testing Spring MVC @ExceptionHandler method with Spring MVC Test

I have the following simple controller to catch any unexpected exceptions: @ControllerAdvice public class ExceptionController { @ExceptionHandler(Throwable.class) @ResponseStatus(value = ...
0
votes
0answers
11 views

Directing to second page after form submission in spring mvc

I am using spring mvc in my web application. My controller calss extends AbstractWizardFormController. One of my process contains two forms.Submission have been done by 2nd page.My intend is to ...
-1
votes
1answer
20 views

@Autowired in WebApplicationContext Spring MVC Tests doesn't work

I'm trying to do a test in my spring mvc controller and my applicationContext is always null. import org.springframework.beans.factory.annotation.Autowired import ...
0
votes
0answers
21 views

@Async Spring gets recalled for every request of different sessions

I have a spring @Async annotated method in a bean, then in the controller I call that bean's method on a user request, and I do it this way so I can get a progress back from that bean, and it works ...
0
votes
2answers
41 views

Spring MVC No handler found

I'm newbie to spring mvc and trying to develop a very basic login webapp. I get the below error while running the project. I have tried almost everything and could not fix this error since last two ...
0
votes
1answer
14 views

GAE + Spring MVC : Saving image file to BlobStore

i succesfully save an image to Blob in Datastore with this code : @RequestMapping(value = "/add", method = RequestMethod.POST) public String add(ModelMap model, Product form, HttpServletRequest ...
0
votes
1answer
17 views

How can order an List<Map<String, Object>> with PagedListHolder?

I have an PagedListHolder: List<Map<String, Object>> list = n value; PagedListHolder pagedListHolder = new PagedListHolder(list); String sortColumn = request.getParameter("sidx"); String ...
0
votes
1answer
46 views

How can I get a bean from the servlet context instead of the root context?

I have a spring-mvc application which has autowired beans by use of <context:component-scan base-package="com.example.app" /> within the DispatcherServlet context configuration. I now have an ...
0
votes
0answers
17 views

spring web application reloaded after jmx service starts

I am developing a spring-mvc application. Whenever I deploy the application for the first time (after starting netbeans), the application is being initialized twice. applicationContext.xml is ...
1
vote
0answers
25 views

Composite Unique Index created on each deploy

I'm using Spring 3.2 with Hibernate 4.2.1.Final and MySql 5.5. Each time I reload my webapp hibernate creates a new Composite Unique Index of my entities. For example in my entity I have: ...
0
votes
1answer
21 views

Get android GPS location in my web appliaction

I have web application developed using java spring technology. Now I want to extend it to android devices which requires me to get the current location of the android devices. Can someone guide me on ...
-2
votes
0answers
14 views

Where namespaces in spring dispatcher are used in runtime?

I was getting following error <Ignored XML validation warning> org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 55; SchemaLocation: schemaLocation value = ...
-4
votes
0answers
15 views

pls explain spring 3.1 mvc GWT integration with example

Pls explain spring 3.1 mvc GWT integration with example? I have spring mvc controller class, how can I call request mapping URL's from the onload() method of gwt.
0
votes
0answers
13 views

How to do page transitions in a popup using jquery?

We have a web application which uses jquery. We have to add a new module which will open in a popup. Then all the pages in that module will open in the same popup window using ajax. We will have ...
0
votes
0answers
16 views

<form:select> does not comes selected

My page has some combos but I don't know why one of this combos doesn't comes selected on edit mode. If i put to show the value and the id of the fiel with the values appears ok, because of this ...
2
votes
1answer
29 views

One Transaction for Hibernate Validation and Spring controller

I am trying to implement the registration controller for a Rest API. I have read about where to place @Transactional quite a bit. (Not at DAO level but at the services maybe orchestrated). In my use ...
4
votes
2answers
65 views

Spring MVC picks the wrong controller method

In my application I have a situation where spring mvc consistently picks the wrong controller method to execute. the debug log from spring below shows the problem, it finds two matches one for my ...
0
votes
0answers
23 views

Spring MVC + Hibernate web application. Web server hangs on load of CRUD operations

I am working on the following project and have came across a runtime issue. http://github.com/dmcquillan314/YouthMinistryHibernate The instructions to run this project are located in the README.md ...
0
votes
1answer
11 views

Smarty plugin-like functionality within Spring MVC possible?

I have a software design question. I am looking for Smarty plugins-like functionality in a Spring MVC app. Let me try to explain the case. I am using Spring MVC to build a webapp and I want the ...
0
votes
0answers
9 views

Using two annotation driven xml args: only one works

I'm trying to use Ryan Tenney's metrics for Spring. I have it 90% working, but whenever I apply the <metrics:annotation-driven /> tag in my servlet config xml it overrides the ...
0
votes
0answers
18 views

Why Spring MVC creates session for each restful request?

I have create Restful web service using Spring MVC. As theory says Restful request is stateless, mean no session is required. But what I have observed with Spring MVC is that for each Restful ...
0
votes
1answer
15 views

How should I set a Feature on a Spring Message Converter's Object Mapper?

I'm using a 3rd party REST API which is returning 'NaN' in it's JSON response :( I can't change the response. I'm using Spring MVC with RestTemplate and the built in Message Converters to deserialize ...
0
votes
1answer
23 views

Return generated pdf using spring MVC

I am using Spring MVC .I have to write a service that would take input from the request body, add the data to the pdf and returns the pdf file to the browser. The pdf document is generated using ...
0
votes
0answers
34 views

java.lang.NoSuchMethodError: org.springframework.beans.factory.annotation.InjectionMetadata: method <init>()V not found

I keep getting this error when trying to deploy a web application in Eclipse Juno. I am very new to Spring MVC. I am just following a tutorial on this site - ViralPatel Spring MVC-Hibernate HTTP ...
0
votes
1answer
11 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
0answers
10 views

Reducing configuration required to add new view in Apache Tiles

I search for ideas on how to reduce some of the boilerplate added by Tiles. Here is how my project organized. In my spring-mvc config I have Tiles configured this way: ... <bean ...
0
votes
1answer
13 views

Replace Struts TagUtils in Spring-mvc

I have some custom code using Struts library which we are porting to Spring MVC I need to replace org.apache.struts.taglib.TagUtils.getInstance().write(pageContext, value); but cant find the way ...
0
votes
0answers
23 views

Re populating command object in spring mvc during

I am using spring MVC in my web application. My controller class extends class AbstractWizardFormController. So I have multiple modules for processing a desired action.I need to re populate the ...
0
votes
1answer
21 views

Spring - mixing annotation and validator-based validations

I've following problem, there's a regular spring model (let's call it "A") with some validations-related annotations. Next, there's a command object (regular POJO class that defines some field, one of ...
0
votes
0answers
9 views

Spring MVC @Pathvariable ends with .jsp

I have a spring controller and a view to show contents of a file. http://localhost:8080/project/admin/repository/view/browse/2/src/main/java/com/controller/admin/AdminController.java I can view the ...
0
votes
0answers
10 views

GAE + Spring MVC : binding File(Image) to BLOB

I have a form to add a Product with image in jsp : <form:form action="add" commandName="product" methodParam="POST"> <form:hidden path="id" /> <table> <tr> ...
0
votes
1answer
37 views

Role based menu in J2EE

I am using Spring MVC for my Web Application. My views are JSP based. What is the Best Practice show role based menus. Should I make a check in JSP page for role? Should I built menu in Java class ...
1
vote
1answer
22 views

Handling non-english URL with Spring and App Engine Task Queue

I have this problem where I need to queue a page link with TaskQueue: Queue queue = QueueFactory.getDefaultQueue(); for (String href : hrefs){ href = baseUrl + href; ...
0
votes
2answers
31 views

reading values from XML and displaying them in JSP

I have some experience with JSF but I want to learn some Spring MVC now. I wish to display the options to the user to change the language my website is displayed in. To accomplish this I want to ...
0
votes
2answers
43 views

Autowire doesnt work in custom UserDetailsService

In my custom user details service, my variable "aUserService" doesnt auto wire even already annotated. tried a lot method, but still failed and the value is null. Acutally i follow from krams ...
1
vote
1answer
41 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
2answers
29 views

How to decode Gzip compressed request body in Spring MVC

I have a client that sends data with CONTENT-ENCODING deflate I have code like this @RequestMapping(value = "/connect", method = RequestMethod.POST) @ResponseBody public Map ...
1
vote
2answers
51 views

How to create paths in RESTful web service for “action oriented” methods?

I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
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
28 views

Referencing Property file in Servlet Context

Newbies question: I have in my Context XML <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> ...

1 2 3 4 5 210