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.
0
votes
2answers
37 views
Can @ControllerAdvise exclude or include some urls?
I have some urls need to add @ModelAttribute from a @PathVariable like /{city}/**
I need to transform the city value to a bean, and use them in the view later;
Now I make it with @ControllerAdvise ...
-1
votes
0answers
20 views
Handling attachment with REST
I am developing a REST API which needs attachment support for multiple files. We use spring MVC, can you please let me know how this can be implemented using Spring.
1
vote
1answer
40 views
deploying spring mvc web app to tomcat: classpath issue
I am developing a small web app using Spring MVC framework. Basically, the app provides web interface, where user can upload XML file and verify it against specific XSD file. I put my XSD file within ...
0
votes
0answers
48 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
0answers
32 views
SpringMvc How to use different validators for an Object based on the function the user is preforming
I have an Object called officers i would like to preform different types of validation based on the function the user wants to preform, for e.g when a officer record is being registered/saved i would ...
0
votes
1answer
23 views
Intellij Artifact has invalid extesion
I have strange a problem with deploing artifact on jboss. After generating default spring-mvc project in intellij, I try run it but,
intellij show in "Run/Debug Configuration" my "Artifact XYZ:war ...
2
votes
0answers
52 views
SPRING - My Session and Request Scoped bean behave like singleton
I recently started using spring. I'm trying implement user session, but I always fail. I've spent two days to looking for the answer but I can't find it. I have used annotation and configuration xml ...
0
votes
2answers
48 views
How to use beans in model attribute in 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
40 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
1answer
44 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
10 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
1answer
23 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
2answers
34 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
56 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
22 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
19 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
38 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
21 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
2answers
26 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
1answer
31 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
57 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
23 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
24 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
50 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
21 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
29 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
26 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 ...
-1
votes
1answer
22 views
Error: “schemaLocation value *** must have even number of URI's.” on namespaces in spring dispatcher
I was getting following error
<Ignored XML validation warning> org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 55;
SchemaLocation: schemaLocation value = ...
-5
votes
0answers
22 views
pls explain spring 3.1 mvc GWT integration with example [closed]
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
1answer
22 views
+200
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
33 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
35 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
70 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
61 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
16 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
10 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
22 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
27 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
40 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
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
0answers
13 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
27 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
10 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
14 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
40 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
33 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 ...






