The Spring Framework is an open source application framework for the Java platform, designed to make Java SE/Java EE technologies easier to use.

learn more… | top users | synonyms (1) | spring jobs

0
votes
1answer
12 views

spring destroy bean manually instead of ctx.close()

is it possible to tell the container of spring to destroy a specific bean (prototype) in order to save up memory? I dont want to user ctx.close() in order to see this bean destroyed, but rather on ...
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
9 views

FormHttpMessageConverter filename from byte array

I'm trying to upload file with POST request. POST must be of the enclosure-type multipart/form-data. I insert file as byte array: MultiValueMap<String, Object> requestParameters = new ...
-1
votes
0answers
12 views

How to script data from database for HSQLDB?

I need to move away from using the real database for JUnit tests in my project. So I choose HSQLDB for in-memory database. But I need to fill the in-memory database with data from the real database. ...
-1
votes
1answer
21 views

Spring MVC autocomplete works just in one page in the eclipse project

I applied this tutorial for doing the autocomplete in my project so all is alright when i put the autocomplete in a page but i want to put the same code in another page and it is not working. my input ...
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
3answers
30 views

Spring Validator does not support command class

I think the issue is pretty common, but for some reason I cannot manage to fix this. This is the error I am getting: org.springframework.beans.factory.BeanCreationException: Error creating bean with ...
0
votes
0answers
10 views

Format JodaTime LocalDate in SpringMvc JSON using formatter

I have a problem with my Spring application. How can I format a LocalDate in a JSON... The problem is that when I send the JSON I have to send a number, but when Spring generate the JSON I have: ...
0
votes
0answers
21 views

Transaction Timeout not working for SQLMapExecutor.executeBatch but works for SQLMapExecutor.update

I am using Spring DAO's support for iBatis. It is the batch update feature that is causing me problems. I have set the default timeout for spring's transactionManager and have been able to test that ...
0
votes
0answers
12 views

Difference between Spring LocalJaxWsServiceFactoryBean and JaxWsPortProxyFactoryBean

What's the difference between those two? The documentation says the following: The former can only return a JAX-WS service class for us to work with. The latter is the full-fledged version that ...
0
votes
1answer
20 views

Persistance.xml vs DispatcherServlet

I am using JPA 2.0, Hibernate 3 Annotation Version, the problem is that i am confusing in Persistence.xml & DispatcherServlet My persistence.xml file contains: <?xml version="1.0" ...
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 ...
2
votes
1answer
25 views

JUnit exluding base class from tests in Spring context

All my unit tests have the same header with Spring annotations: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:spring/spring-master.xml"}) ...
0
votes
3answers
63 views

MongoTemplate instance is not created inside spring

I want to try spring integration with MongoDB, For this purpose I did following things. but its not working Some how MongoTemplate instance is not created and throws java.lang.NullPointerException. ...
0
votes
0answers
16 views

Create DataSource using JBoss 7 JNDI and Spring

I am first time making a webapp for Jboss server. For JBoss we have the jndi details, but I am wondering how to create the Datasource using it in spring application context. If anyone has an example ...
0
votes
1answer
22 views

Spring Validation : Server side systems

The more I read the more I find that the MVC @Validate is mainly intended for web applications, including online samples for me to get my head around the actual use. I have completely server side ...
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: ...
2
votes
2answers
66 views

Can Controller layer call directly to Persistence layer?

I've webapp with JSF, Spring and Mybatis. Those frameworks are utlized in controller, business and dao layers respectively. In my DAO layer I've methods for CRUD operations. Now, in my controller ...
0
votes
0answers
27 views

NullPointerException on NamespaceManager access

What are the reasons that NamespaceManager.get() would throw NullPointerException. Can anyone help me identify possible reason(s) that NamespaceManager is null and that get() will throw NPE? This ...
-6
votes
0answers
28 views

I want to add two different URL to our single application [closed]

I want to add two different URL in my single application: Eg. For User /app/userlogin For Admin /app/admin/adminLogin Now i want to create two different war one with admin URL Only and other one ...
0
votes
0answers
33 views

initializing beans through instance factory-method

I have a bean which I am trying to create through a instance factory method ,which takes in parameters.The bean and factory class are given below along with the metadata. public class AddEmployee ...
-1
votes
1answer
31 views

Spring java syntax error

I have a self join class where I want to save a parent object along with the children. To implement that I have: Model public class UserEntity implements Serializable { ...
-2
votes
0answers
48 views

insert a date fields : struts2 spring hibernate mysql [closed]

I hope you can help me: well I'm working on a project using the framwork struts2 spring hibernate and mysql database, I have done all the necessary configuration and I get to connect to the database, ...
0
votes
1answer
21 views

HTTP 302 on backend start in appengine

I have an appengine application, using Spring 3.1.2, and working just fine. The Resident/Dynamic instances starts normally using warmup: 2013-05-20 20:32:53.786 /_ah/warmup 200 27205ms 0kb Now I'm ...
0
votes
0answers
13 views

hibernate3:hbm2ddl requires a hibernate config?

I'm trying to auto export my db schema from my POJO definitions , which are annotated using hibernation annotations. I specified my hibernate properties in my spring.xml, the bean for ...
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
60 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
2answers
25 views

Spring MVC JSR 303 Validation with Json response validation errors from ValidationMessages.properties

Hi I was looking for everywhere but can't find solution. I am making an ajax call in Jquery function and submiting data from spring inputs form:input to Controller. Controller is validating date by ...
0
votes
1answer
23 views

Spring inserting filepath to mysql

I'm using Spring 3.2, Hibernate 4.1 and Mysql. I'm trying to save a file to the local drive and then save the filepath to the database to be used for future download. I have implemented the file ...
0
votes
0answers
23 views

Alternative to sharing hibernate session between threads

I am working with Spring 3.0.7 / Hibernate 3.5.0. I have some code that works with hibernate entity. It works ok. The problem occurs, when I try to make integration test for this code. Below is the ...
0
votes
1answer
33 views

spring @transactional preformance

lets say i have a service bean that has 2 methods: @Transactional(readonly=false) public void doSomething() @Transactional(readonly=true) public void doSomethingReadOnly() and 2 variations of a ...
0
votes
0answers
22 views

Quartz / Spring / Postgres: Connection is always closed

I'm trying to get a Spring 1.3.1 application working with Quartz 2.1.7. This will be running in a clustered configuration with a postgresql jobstore. I've been receiving this exception on startup: ...
0
votes
1answer
19 views

ReflectionToStringBuilder errors in Maven Project

Some of my Roo generated .aj files seem to be generating errors as below. I can see commons-lang3-3.1.jar in my Maven Dependencies. I have added this to my pom.xml <dependency> ...
1
vote
1answer
40 views

Can't rename XML & Json Root Element in Spring 3.2.2, Jackson 2.2 and Xstream

Please help me to understand what is going on with name of XML&Json root element in Spring in JSon I get {"addressList": [{"StreetName":"Boul. Rene-Levesque ...
0
votes
1answer
24 views

spring - should every class in my project be a bean?

In my project there are several @repositories , @Services, @Controllers My question is for the other 99% of the classes: Should i declare them as beans as well? pros\cons? thanks..
2
votes
0answers
30 views

WiFi conflicting with local mysql connection (Java/Spring)

I'm using java/spring to connect to a local mysql database and run some integration tests. Sometimes I get Hibernate errors saying that a connection cannot be established. I've noticed this only ...
0
votes
2answers
27 views

create spring bean List initializing by the method

I have the method: public List<IEntity> wordsCollection() I need to create the bean with that list. This method ask DB for data and gets it out. When I used method call - I do call several ...
1
vote
1answer
15 views

transition is not invoked on view-state in spring webflow

Transition is not invoked in my view-state and when I click the fogotusername link in my login page, it again lands to the login page itself. I think the webflow session is somehow lost. Any idea? ...
0
votes
0answers
27 views

Jdbc statement error

I have problem with such simple thing, sql statement, I have table in database that contains link in varchar(255), people are logged to site by links, so I'm taking logged person name (Getting ...
0
votes
1answer
25 views

Java spring portlet extends GenericPortlet how to autowire dependencies

I am using java - spring - portlet I want to keep using my portlet as extend to GenericPortlet but i want to use spring dependency injections. Currently i found the work around which is as follows ...
0
votes
0answers
40 views

Spring Security Plugin Authentication Failure Issue

I installed Spring Security Core plugin which provided me a login controller. I then created a user in the BootStrap.groovy def init = { servletContext -> if (User.count() == 0) { def ...
0
votes
1answer
33 views

Jackson @JsonIgnoreType not working on static inner class

I have several model objects that are using the builder pattern which I am trying to serialize with Jackson through Spring MVC. Problem is, I don't want the inner static builder class to be serialized ...
1
vote
1answer
21 views

Is there “best practice” for referencing Spring MVC mappings (annotations) in JSPs

I've got a Spring web application that I've inherited and now I'm extending. I've lived through the hell of massive, sprawling Spring XML files and a refactoring process - time I'll never get back. ...
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
26 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
1answer
22 views

Spring Security. How get LDAP user attributes?

Authentication is working correctly. I try to get LDAP user attributes using "search" metod of LdapTemplate. My spring-security.xml: <beans:beans ...
1
vote
1answer
29 views

Spring Hibernate - saving a one to many association

I would like to save a one to many relationship into the database. In this case one parent and two children. DAO code public void createMatch() { UserEntity checker = new UserEntity(); ...
2
votes
1answer
25 views

Spring 3.x - Bean named 'zoneManagerDelegate' must be of type [com.ms.adsp.delegate.sapi.ZoneManagerDelegate], but was actually of type [$Proxy20]

I have huge complex Spring project. When i added new class: @Service("zoneManagerDelegate") ...
0
votes
1answer
41 views

Spring Rest ErrorHandling @ControllerAdvice / @Valid

I'm having trouble when Using @ControllerAdvice and @Valid annotations together in a REST controller. I have a rest controller declared as follows: @Controller public class RestExample { ... ...

1 3 4 5 6 7 570