Version 3.x of the Spring Framework
1
vote
0answers
13 views
OAuth2 Spring client throws UserRedirectRequiredException
I'm trying to set up a Spring OAuth2 client that authenticates to my own provider and resourceserver. Provider and resource server are one application in my case.
I have problems with setting up the ...
0
votes
0answers
15 views
How to set 'Content-Disposition' and 'Filename' when using FileSystemResource to force a file download file?
What is the most appropriate, and standard, way to set the 'Content-Disposition=attachment' and 'filename=xyz.zip' with Spring3's FileSystemResource?
The action looks like
@ResponseBody
...
0
votes
0answers
26 views
Multiple log in points in Spring security 3
I want to implment two login points in my application.
And i want it to work like this.
User logs into page 1 (user credentials 1), he then proceeds to click a button which takes him to page 2 if he ...
0
votes
1answer
28 views
can we use hasPermission secution expression in xml config of spring?
Could we use something like this in spring configuration xml file :
<http auto-config="true" use-expressions="true" >
<intercept-url pattern="/hardcopy/*" access="isAuthenticated() ...
0
votes
1answer
26 views
How to get hold of user details in custom expression handlers
I am using a custom security expression handler and using spring 3.2.0. Here is the custom expression root class :
public class CustomerPortalSecurityExpressionRoot extends WebSecurityExpressionRoot ...
-1
votes
1answer
50 views
data inserted into db after spring transaction rollback
I'm testing my declartive transaction configuration with following testcase:
I try to insert 2 record into a table with 4 columns(id, content, position, time) while position is a UNIQUE index. I use ...
0
votes
0answers
14 views
How to persist multiple objects in Spring3-JPA one to many table
I have tried persisting many objects in a simple JPA project but I can't seem to replicate it on a spring3-JPA project. I notice that only one object persists at a time.
Please can someone help ...
-1
votes
0answers
20 views
How to use spring 3.0 mvc controller using xml configuration? [closed]
I just started working with spring mvc and found that spring 3.0 mvc is annotation driven.
I tried to find out example of controller xml configuration but not successed . Is it possible to use xml ...
0
votes
1answer
47 views
autowire unmanage beans using context:component-scan
with reference to the below example,
Autowiring Unmanaged Beans Annotated With @Component
It states that you are required to register the bean in xml file and then only you can wire it in your Java ...
0
votes
2answers
42 views
In JUnit 3, Do Tests Share a Spring Container?
In JUnit 3, are tests run within the same spring container? or does each test get its own container?
What can be done to prevent tests form 'bleeding' session data to other tests?
1
vote
1answer
45 views
Spring app on Tomcat doesnt find class in weblogic.jar
I'm trying to deploy an app on tomcat 7 that uses spring 3.1.1 and weblogic 10.3, but I keep getting a NoClassDef exception:
java.lang.NoClassDefFoundError: Could not initialize class ...
0
votes
0answers
27 views
JSPG0036E error when running application on websphere application server
I am developing an application using the websphere application server 6.1 in websphere development studio.
Spring MVC 3.0 is the framework I am using and here goes my Deployment Descriptor.
...
0
votes
0answers
54 views
Autowire/inject scoped bean into controller method
Spring 3.2. Everything works when I do:
@Controller
public class MyController {
@Inject
Provider<MyBean> provider;
@RequestMapping("/chart")
public void ...
0
votes
0answers
74 views
Spring MVC Form backing object field names
Is it possible to specify a text input field id to bind a form backing object to? My form is using third-party javascript and I do not have control over the input's id value.
For example:
<input ...
0
votes
1answer
64 views
Class not found CallableProcessingInterceptor: migrated to 3.1.4
Stack trace:
SEVERE: Servlet /tsl threw load() exception
java.lang.ClassNotFoundException: org.springframework.web.context.request.async.CallableProcessingInterceptor
at ...
1
vote
0answers
80 views
Spring's DeferredResult setResult interaction with timeouts
I'm experimenting with Spring's DeferredResult on Tomcat, and I'm getting crazy results. Is what I'm doing wrong, or is there some bug in Spring or Tomcat? My code is simple enough.
@Controller
...
0
votes
1answer
60 views
How to make embedded Jetty use the AppContext it's defined in as parent context for servlets
I have a standalone java app that now runs an embedded Jetty server to expose a RESTful API for HTTP. It does make heavy use of Spring beans for everything from Hibernate to Jetty. I have Jetty ...
0
votes
0answers
23 views
Inject a property into a Class level annotation in Spring 3
My requirement is to Inject a property into a Class level annotation.
What I want is something like the following but @Value only support Injection of fields or methods:
@MyAnno(someproperty = ...
0
votes
2answers
62 views
Session is closed Exception
I am building an application with struts 2 hibernate spring 3 with my sql as back end and c3p0 connection pooling(c3p0-0.9.1.1 jar).
Sometimes, when executing a query, I get the below error. When ever ...
3
votes
1answer
68 views
java.lang.IllegalStateException: File has already been moved - cannot be transferred again
I am trying to upload a file and save it on server. But I get :
java.lang.IllegalStateException: File has already been moved - cannot be transferred again I am using Commons FileUpload ...
0
votes
1answer
72 views
Inject File from classpath using Spring Environment
My problem: how can I inject a File in my class using the Environment variable?
I specify in a properties the path of a file I need to read:
myFile.path=classpath:myFile.json
I used to have an XML ...
1
vote
0answers
57 views
db connection deadlock
We have a web application that has been running well for several years. The web application was using mysql, spring-1.2.6, and ibatis.
After replacing spring-1.2.6 with spring-3.2.0, we started to ...
0
votes
1answer
59 views
Is there any way to override a bean discovered by component scan?
I have a java configuration class providing fooBean directly and barBean by component scan.
@Configuration
@ComponentScan(basePackages = { "com.blah" })
public class Config {
@Bean
public ...
0
votes
3answers
73 views
Cannot find bean definition , should I annotate an interface too?
I have an interface as show below
public interface UserManager {
void insertUser(User user);
.......
Now I have an implementation class as below
@Service
public class ...
2
votes
2answers
170 views
File configuration Hibernate 4 and spring 3
 I started with the new technology with spring 3 hibernate 4
 I try to do the following examples totural and each time the same errors
I work with Spring 3.1.1 Hibernate 4.1.0
<?xml ...
0
votes
1answer
39 views
How do I set a property on a bean annotated with @Component after creation?
I have an annotated bean with @Component that gets built using <context:component-scan/>, however I wish to set a boolean property after this has been created from a value within a properties ...
0
votes
1answer
84 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
1answer
41 views
meaning of action-response style web framework (Spring MVC 3)
I am learning Spring MVC. In the SPRINGSOURCE BLOG The author Colin Sampaleanu says that "Spring MVC, a part of the core Spring Framework, is a mature and capable action-response style web framework".
...
1
vote
0answers
37 views
Suggested configuration for CommonsPoolTargetSource? [closed]
I created a pool of JAX-WS clients for a web application. However, I'm not sure how should I set my configuration. Is there a suggested configuration for CommonsPoolTargetSource? (e.g. What is the ...
5
votes
1answer
195 views
Dynamic css not applied in my menu (tiles + spring 3.0)
I am using Spring 3.0 + tiles. I have created the common menu with anchor tag for all the pages and applied the css for the same. I am using Jquery for dynamically changing the css class for the menu ...
1
vote
1answer
154 views
Spring 3 Static Resource Mapping with Thymeleaf
I am having an issue mapping my static resources with Spring. I am getting a 404 error. My servlet code is as below
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
0
votes
1answer
22 views
Join many tables in to the map
I have 3 tables: user, role, project. In addition, I created a table that links them all together and has the structure like this: id, id_user, id_role, id_project. I would like, using annotation, in ...
1
vote
1answer
196 views
spring xml based configuration from java based configuration
I am doing sample chat application using spring mvc and redis server by following steps from
http://blog.springsource.org/2012/05/16/spring-mvc-3-2-preview-chat-sample/
the example given there is by ...
0
votes
1answer
134 views
Spring 3.1: BeanDefinitionStoreException on startup
Microsoft Windows 7 Professional
WebLogic 11g
Java 1.6 ( the version with weblogic )
Spring 3.1
I was using WebLogic 11g and Spring 3.1 to do Java Webapp development on a Windows XP Professional ...
0
votes
1answer
62 views
How to let CommonsPoolTargetSource pool size grow as needed?
I noticed that when there are many requests and the max pool size is reached, other requests wait until a resource is free. How do I setCommonsPoolTargetSource such that when it reaches its max pool ...
3
votes
2answers
95 views
Different principals in spring security context when 'in-bean' login method used
For couple of days I have been working on integrating Facebook with our application. I have successfully made the connection working and now after Facebook Login I copy the user to our database and ...
3
votes
2answers
131 views
How to pool objects in Spring?
I'm following this tutorial regarding how to pool objects in Spring. I've followed the instruction written on the tutorial but when I run my application, it always generates a new instance of the ...
0
votes
2answers
241 views
How to use java enum as bean in spring
My goal I want to achieve is to inject enum to Spring managed bean.
I do not want my bean be configured in XML (there no reason to do so except this not-working enum).
I have simple maven project:
...
0
votes
1answer
274 views
no declaration can be found for element 'mvc:annotation-driven'
I have the requirement of returning JSON/Xml data from my controller.From what i found,I needed @ResponseBody in my method and for that i need enabled.I have tried all sorts of RnD but am still ...
0
votes
1answer
137 views
Kendo UI editor jsp wrapper beta - Spring 3.1 - image browser - server returns 406
I'm trying to use the jsp beta wrapper to implement Kendo UI image browser and keep getting 406 response from the server.
I'm using Spring 3.1 and the Kendo editor is just an add-on to a functional ...
1
vote
0answers
336 views
Spring 3 Security j_spring_security_check
I'm trying to learn, how spring security works, so I've downloaded some sample project and then I tried to implement that solution to my project. But when I try to login, I get 404 error and in an ...
0
votes
1answer
267 views
Spring Security; custom-filter and user-service-ref not working together
I'm trying to implement spring security authorization using a custom filter.
security.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans ...
0
votes
2answers
89 views
spring 3 not rendering model in jsp
I am a bit disapointed concerning Spring 3 not rendering my model in a jsp using Expression Language and I have to admit that I dont understand why. If anyone could help me understanting why I can't ...
1
vote
2answers
106 views
Adding users to spring 3 security
I'm thinking about implementing authorization of the users via spring 3 security. I know that usernames and passwords are being stored in some XML file like this:
<authentication-manager>
...
0
votes
1answer
64 views
What is the proper way for mail polling in Spring 3+ Tomcat apache?
I am working on Spring 3 + Apache Tomcat based web application I need to implement mail polling in which emails will be fetched using JMS or any other mail server technology (like apache camel or ...
0
votes
0answers
185 views
Spring MVC REST API- How to accept a list of parameters as an input
In a Java REST API that I am working on, I am using Spring MVC.
Now, there is a API endpoint required for fetching user information for multiple users, which should accept a list of user IDs (IDs are ...
0
votes
1answer
255 views
File upload via Spring MVC API+ Jquery based Front END HTML Web App
I wish to upload a file using a Spring MVC based REST API. The API will be a typical Java web app and will act as the backend.
The frontend will be a HTML web app that uses JQuery.
I want to show an ...
0
votes
1answer
314 views
Unable to wire-up the swagger with RestEasy, Spring, JBoss AS 7.1.1
I am using JBoss AS 7.1.1, RestEasy 2.3.5.Final, Swagger 1.2.0, Spring 3.1.1
Here is my web.xml,
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<listener>
...
0
votes
1answer
232 views
Avoid default value in spring <form:input path=“var” /> for int variable
I'm using Spring 3.1.0 JARs for my application. I have mapped my bean class with view through command name, I have no problem with mapping it works clearly.
The issue is that I'm having an int ...
0
votes
0answers
22 views
Spring openid authentication
I am working with Spring openid authentication and am confused when I had to give the grantAll access to allow anonymous access to registration page.
Here is what I am doing:
1) Present a login ...



