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

4
votes
1answer
34 views

NullPointerException when accessing lazy loaded collection within DAO method

I'm having a strange issue with Spring and Hibernate when running multiple threads in an application. I'm using spring 3.2.0.RELEASE and hibernate 4.1.12.Final. The issue is that for some objects, ...
0
votes
0answers
6 views

getting error: Could not load JDBC driver class [org.postgresql.Driver]

I'm trying run a Junit test,have configured before only projects without maven, now i am trying to make this integration, but i stop in this following error: PropertyAccessException 1: ...
0
votes
0answers
7 views

How to validate the Date format in Spring MVC

I have this Validator : import org.springframework.validation.Validator; public class AddActivityValidator implements Validator{ @Override public boolean supports(Class<?> clazz) { ...
-2
votes
1answer
13 views

Mult-Page SpringMVC Project, should I use sessions

I am rewriting a Mult-Page SpringMVC Project, should I use sessions? The user needs to enter 3 pages of data before we do a save to the databases. Should I make a bean per screen and keep them all ...
0
votes
0answers
21 views

Retrieve Object Spring JdbcTemplate with other DAO

Performing a job in Spring JDBC, I recall a related object by its ID, which also has a search by ID. public class Persona { private Integer id; private String primerNombre; // ... } ...
0
votes
1answer
2 views

SpringSource Tool Suite: Infinite redirect in vFabric tc server (tomcat)

I'm running SpringSource Tool Suite 3.2.0.RELEASE. I have a working application that runs just fine when configured to launch from root context ("/"). I need to move this to a subdirectory (e.g. ...
1
vote
1answer
30 views

Class getName() behavior in aspect vs instance method

In a Spring 3 webapp, I have a DAO that looks something like this: public class BaseDAOImpl<T extends AbstractEntity> implements BaseDAO<T> { ... public void ...
0
votes
0answers
9 views

Spring not using log4j2.xml configuration over slf4j

I'm updating one of my applications to Log4J2 over SLF4J and I'm running into troubles with Spring. Additionally to the "normal" (correct) logging output 2013-05-24 20:02:00,490 INFO [main] ...
0
votes
2answers
17 views

Could not autowire field when bean implements some interface with Spring

I am using Spring in my Java Application, all the @Autowired annotations working until now. Simplified example would be: @Component public class MyBean implements MyInterface { ... } ...
0
votes
0answers
20 views

Why tomcat's -D parameter not accepted in applicationContext.xml?

There are two war files in tomcat's webapp directory. Passing -DAPP_NAME=XYZ as VM parameter. And trying to read the value in applicationContext.xml with syntax ${APP_NAME}. One webapp substituting ...
0
votes
0answers
8 views

Wss4jSecurityInterceptor giving exceception

I have developed one web service which is working fine with soup-ui but when when i am calling it with client it is giving me Null Pointer exception. If I remove security interceptor from both end it ...
1
vote
0answers
24 views

Jackson: Deserializing enums

I'm using Jackson + Spring in a REST API. One of the API calls has JSON that looks like this: { "status": "Suspended" } where the value of "status" is mapped to a Java enum, like so: public ...
2
votes
0answers
9 views

Error while saving an entity with transient property with spring data neo4j

Why is spring-data looking at isCaptain even when I specified it as transient? From the documentation, the transient properties should be ignored. No error if I use a Boolean wrapper class Exception ...
0
votes
1answer
9 views

Spring Integration handle http outbound gateway failures

There are multiple servers that are listening to activemq. The chain is configured to make the http [outbound gateway] call. Suppose one of the server picks up the message and in-between if the http ...
0
votes
0answers
13 views

Spring JDBC for SQL Server - Using SQLXML datatypes yields SQLServerException: Implicit conversion from data type xml to nvarchar(max) is not allowed

I'm trying to make use of a SQL Server stored procedure that uses XML in/out parameters using a Spring SimpleJdbcCall as per this example from the Spring 3.2 documentation ...
0
votes
0answers
15 views

Spring Converter error

Lets imagine that I have one-to-many assosiation where class User may have one Role (admin etc) but many User(s) may have the same role. Code is as follows: @Entity @Table(name = "Users") public ...
0
votes
0answers
21 views

Migration Spring 3.2.2 to 3.2.3

I'm trying migrate Spring 3.2.2 to 3.2.3 on my project. I'm using maven to managed dependencies. I'm receiving this stack trace when I try deploy the application: 11:53:32,202 ERROR ...
1
vote
2answers
18 views

Spring application beans being duplicated

I am developing a spring application using version 3.1.2 using tomcat 7 as the servlet manager. I have noticed that the beans are being created twice, and I'm not sure how to prevent that. I ...
0
votes
0answers
10 views

How to know if a Spring MDP Listener is Alive?

I have a Spring MDP listener deployed as a war that listens to a JMS queue and replies back for synchronous request-reply messages. What is the best way to monitor if the listener is alive ? Or think ...
2
votes
1answer
27 views

Specify default property value as NULL in spring

I want to define default property value in Spring XML configuration file. I want this default value to be null. Something like this: ... <ctx:property-placeholder ...
1
vote
1answer
19 views

org.springframework.social.UncategorizedApiException: Error consuming Twitter REST API

I am trying to use Spring Social for twitter search. I get this error while trying to connect to the twitter (For search I don't use twitter authentication): ...
1
vote
1answer
20 views

Maven profile parameters aren't loaded in Spring JUnit context

I'm running JUnit tests with Maven profile. Maven profile looks so: <profile> <id>someProfile</id> <properties> ... ...
0
votes
0answers
19 views

Spring JDBC and GeneratedKeyHolder

I have some code this looks like this sample here (Spring 3.1). It works just fine. But I am wondering if there is a more Spring-ish way of returning the key (Oracle nextval) that I just inserted. ...
0
votes
4answers
24 views

Proper way to inject parent class dependencies with Spring annotations

I have following code - Dao.java @Component public class Dao extends NamedParameterJdbcDaoSupport { } dbContext.xml <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" ...
0
votes
1answer
9 views

Exception when i send my form Spring MVC

I want to insert a record to database so this is my controller : @RequestMapping(value="/ajouter_activite",method = RequestMethod.POST) public String AddActivity(@ModelAttribute Movement ...
1
vote
1answer
19 views

Preserving file uploaded between views

I am using Spring MVC in a web application. I have a view where I allow users to upload a file, and I would like to preserve this file between subsequent views, so in the controller action I add it to ...
0
votes
0answers
11 views

Save an object with image ( save both object data and image too) inside mongoDB using Java

I want to know specifically about saving an object with an image inside it. What I want to do is saving an entire object with image inside it, Image must be saved. I tried this but it saves only File ...
0
votes
0answers
26 views

JSON Mapping in my Spring MVC 3.2 Application Works for Only One of My Methods

I am working on a Spring 3.2 MVC application. It's setup fairly typically, but my problem is that I am getting a 406 status error when I attempt to return a JSON object from my controller methods. ...
-1
votes
0answers
17 views

BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext

all the related posts are not helped me.... please check my configuration file is correct or not.... My application is based on struts2 integrated spring3 and jpa eclipselink for the database ...
0
votes
0answers
15 views

JBoss JNDI java.net.SocketTimeoutException: Receive timed out

I am trying to move my database settings to jndi and want to configure my spring dataSource with org.springframework.jndi.JndiObjectFactoryBean with JNDI datasource defined in the xxx-ds.xml under ...
0
votes
1answer
21 views

How to solve org.hibernate.StaleObjectStateException when copying data from one database to another?

I am trying to copy data from one database to another. All is working fine, until one of the rows in the source database is modified (stack trace below) . Adding new rows to destination database works ...
0
votes
0answers
13 views

Spring Struts 1 advice is not being invoked

Our project architecture uses Struts 1 and Struts 2 with Spring 3. I am trying to create an Aspect for better exception handling. Struts 1 was until now not Spring managed - So I followed this link ...
0
votes
0answers
11 views

Spring MongoDB Read Preference at Operation Level

I have a collection which most of cases need to be accessed with ReadPreference=PRIMARY which is default and i.s fine. But In certain usecases for e.g., reporting, the same collection I am ok to ...
0
votes
0answers
15 views

Difference between physical and logical transactions in spring

In this spring document http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/transaction.html .It talks about physical and logical transactions.I have written a very ...
0
votes
0answers
21 views

Spring circular dependency - enviorment related issue

This is not code related issue - since it does work on other environments. The problem that I occur is 24 maj 2013 10:52:18:762 ERROR [main] [ContextLoader:215] Context initialization failed ...
0
votes
0answers
16 views

The app don´t work well with spring-security

I'm begging with the framework spring and spring-security. To learn, I´m developing an app. Up to now I have developped the app without spring-security, for validate to the user by way a login´s form. ...
0
votes
1answer
14 views

Validate only one spring annotation on form field and independently from others field

i have a specific requirement even if it seems to be pretty straightforward. I have a form for a user (give you a simplify version of it). public class Form{ @NotEmpty(message = "{empty}") ...
1
vote
3answers
23 views

How to know if the wiring for a bean is complete with autowiring?

I have a bean with autowired beans. So something like: class A { @Autowired B b; @Autowired C c; void function() { // here I would like to do something when I an ...
0
votes
0answers
19 views

Map hibernate projections result to java POJO model

I've been using spring and hibernate for this past few weeks and I've always been learning something new there. Right now I've got a problem that I want to solve with Projections in Hibernate. ...
0
votes
1answer
19 views

Failed to read schema document mule-test.xsd in Mule configuration file

Below is my test-config.xml file: <?xml version="1.0" encoding="UTF-8"?> <mule xmlns:file="http://www.mulesoft.org/schema/mule/file" ...
-1
votes
1answer
14 views

Servlet 3.0 Spring Java Config JNDI

I am trying to replicate the resource-ref attribute of web.xml in my spring web apps WebApplicationInitializer to configure JNDI. How would I do this: <resource-ref> ...
0
votes
1answer
13 views

Spring MVC @modelattribute in proxied controller

I have a controller which has an interface as proxy @Controller public class MyController implements IMyController{ public FormBean getCommand(){ return new FormBean(); } public String ...
-1
votes
0answers
24 views

How to use hibernate criteria sorting with where clause with multiple AND or OR

Please provide me with any example of hibernate criteria I want a criteria that sort a list criteria containing a where clause,multiple AND or OR, . I dont have any reference for this so please ...
0
votes
1answer
27 views

Custom method in Spring JPA Repository

I'm trying to implement a custom method in Spring JPA repository. All the automatic methods of type findBySomething work just well. But when I try to add a custom method, its name is parsed and JPA ...
0
votes
1answer
22 views

sending email using spring framework get error

Following is the my code to sending the email. import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; public class TestArrayList { private MailSender ...
0
votes
0answers
8 views

Intergrating jBPM 5.4 with Spring-Hibernate for Transaction Management?

I have created a simple process using jBPM 5.4. I want to use transaction managment provided by the Spring-Hibernate. What are the required changes and configurations for that ? also What is the step ...
0
votes
0answers
12 views

Spring JPA using @query annotation not working with Order BY Query ASC and DESC When Passing PArameter

@Query(value = "SELECT * FROM Customer order by ?1 DESC", nativeQuery = true) List getSortPage(String perameter);
3
votes
1answer
51 views

NULL Database Record Returned After Reading Database Record Immediately After Insert

I'm using Spring JMS with the JPA Hibernate implementation and I'm seeing an intermittent issue with a insert and then instant read of the same record. web application flow: -Data gets posted to my ...
0
votes
0answers
14 views

Spring STS Jetty is running instead of Apache Tomcat 7

I am using Spring STS 3.10. I have following questions (when I run project as web application). 1- What is the difference between Run as -> "Run on Server" and Run as -> "Web Application" . 2- I ...
0
votes
1answer
31 views

Spring unresolvable circular reference

I know this has been brought up before and that this is a noob question, but I cant get my head aroud how to fix this. Im getting unresolvable circular reference errors when starting up my app. ...

1 2 3 4 5 570