1
vote
0answers
9 views

File data propagation between controller actions in Spring MVC

I have to process an Excel file in order to insert some data into a Mysql database on a web based application. I am using Spring MVC as the architecture. The problem is I need to include a mid-step ...
0
votes
2answers
23 views

how to block the unauthorized user using Spring Security?

I'm new to SpringSecurity. This my Spring-security-Context.xml file <?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/security" ...
2
votes
1answer
25 views

org.springframework.security.authentication.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext

I have a web application in the following environment. Spring 3.2.2 Spring Security 3.2.0 JPA 2.0 JSF 2.1.9 I have added the following libraries related to Spring security to the classpath. ...
0
votes
2answers
20 views

Reference file relative to Jar deployment location

How do I reference an external beans.xml file based on its relative location to where my jar file is deployed? This is what I have now, which doesn't work: ClassPathXmlApplicationContext ctx = new ...
0
votes
1answer
13 views

set springs fixed locale resolver (for i18n) default locale during runtime

I am currently creating a java web application using Spring Framework. My application haves one administrator account and several normal user accounts. I want my administrator account to be the one ...
0
votes
1answer
33 views

@Autowired not managed in spring mvc “Injection of autowired dependencies failed”

im trying to inject a bean into my class java ValiderBR @Service public class ValiderBR extends BusinessRule { @Autowired ILog logger; ... } but i have an error of injection caused by the ...
4
votes
2answers
50 views

REST Api Implementation Using Spring

One of the best practices of writing RESTFul api application, is to add versioning. for example: http://my-server/api/v1/getData http://my-server/api/v2/getData Our application exposes REST api ...
0
votes
3answers
35 views

<form:option> default value

I have following spring-mvc code in jsp page <form:select path="role" id="idRole" > <form:option value="">Select a message role</form:option> <form:options ...
0
votes
2answers
33 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
vote
1answer
39 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
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 ...
2
votes
0answers
44 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
43 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
1answer
34 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
2answers
29 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
53 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
vote
0answers
33 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 = ...
-1
votes
2answers
24 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
30 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
56 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

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
49 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 ...
1
vote
0answers
28 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: ...
4
votes
2answers
69 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
42 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
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
25 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
24 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 ...
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
3answers
62 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 ...
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
53 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
28 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
32 views

Spring MVC multiple rows form submit submits new ModelAttribute

Ok its another one of spring's null ModelAttribute but I've tried everything I found but it doesn't work. I've adding this tutorials functionality to my web app spring-mvc everythings workds greate ...
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 ...
2
votes
0answers
35 views

executeUpdate() hibernate and spring return to controller number of rows

I have a problem with return affected rows in Springmvc/Hibernate project(MySQL databse). This is my DAO file, which must return the size of affected rows in my database. When i execute this method ...
0
votes
1answer
28 views

PagedListHolder<clazz> cannot be resolved to a type

As you know in spring mvc we can provide pagination mechanism using PagedListHolder class. I already did provide methods that provide pagination for me but I got forced to do declare methods for all ...
0
votes
0answers
23 views

Cannot create JDBC driver of class '' for connect URL 'null' oracle XE MVC Spring Mybatis Tomcat 7

I created a simple web application with MVC Spring Integrated (or at least trying to) My batis. I am using Oracle XE database and Tomcat 7. My problem is that I am not being able to connect to my ...
1
vote
0answers
27 views

jquery spring mvc html in javascript code

I have two tabs like the one shown below. User selects the checkbox which he want to edit and the next tab shows the field for editing the field. My first tab is loaded using jquery load function. ...
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
1answer
33 views

How to populate Form from Spring dropdown when form is submitted

My code lists the data that I would like to see, but when I hit submit it fails to populate the backing form with exception below. How can I make the bindings work? The exception I get is of Mismatch ...
0
votes
1answer
37 views

Error when I start my application - Hibernate+spring mvc

I have application with spring mvc + hibernate. All tests It's working but when I try to start my application with tomcat I get an error: HTTP Status 500 - type Exception report message ...
0
votes
1answer
54 views

Display JSR-303 errors before form submission with Spring MVC

Is there an easy way in Spring MVC 3.x to display form error messages (obtained by JSR303 validation), before submiting the form ? Consider the example code at the end of this post. The end-user is ...
0
votes
1answer
63 views

Spring Security, REST basic authentication issue

I got an issue related to the HTTP response header "Access-Control-Allow-Origin" when using basic authetication with Spring. When I authenticate manually, like the code bellow (I'm using REST): ...
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 ...
2
votes
1answer
57 views

Spring MVC Hibernate Validator TypeMismatch Exception

I'm using Spring MVC with Hibernate validator 4.2.0. have a ValidationMessages.properties on my class path in /WEB-INF/classes/ValidationMessages.properties: typeMismatch.java.lang.Integer=Must ...
1
vote
0answers
38 views

Entities are not mapped

i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception: SEVERE: Servlet.service() for ...
0
votes
1answer
37 views

Spring expression Language - Call getter

Suppose I have a class MyClass as follows. package com.classes.blabla; public class MyClass { String myVar; public setMyVar(String myVar) { this.myVar = myVar; } public String getMyVar() { ...

1 2 3 4 5 105