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

5
votes
0answers
1k views

Spring MVC multiple file upload with HTML5 multiple file form feature

I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping. Here's what I did and my configuration. Html5 form : <form action="addFileSystemImage.foo" ...
5
votes
0answers
1k views

Create a stored procedure in HSQLDB with Spring embedded databases API

I am currently trying to create a testing environment using an in-memory HSQLDB instance, created using Spring, thanks to its embedded databases support: Current set up Creation of the "data ...
5
votes
0answers
538 views

Load time weaving in grails

I'm trying to use load time weaving in a Grails project in order to be able to serialize and deserialize an object and to have automatic injection of spring dependencies. After some searching I found ...
4
votes
0answers
172 views

Using Spring @Scheduled and @Async together

Here is my use case. A legacy system updates a database queue table QUEUE. I want a scheduled recurring job that - checks the contents of QUEUE - if there are rows in the table it locks the row and ...
4
votes
0answers
641 views

Spring: @Transactional with readonly=true not call conn.setReadOnly(true)

I have annotated my service methods with @Transactional readonly=true. It since that spring/hibernate not call the setReadonly method of the jdbc connection driver. what can I do? Because of I will ...
4
votes
0answers
607 views

Spring does not abort bootstrapping on bean initialization Error when component scanning is enabled?

i have a web application with a spring configuration file. i have the following entry: <bean id="flyway" class="xxx.FlywayTool" init-method="migrateOrFail"/> the "flyway" bean is used to ...
4
votes
0answers
2k views

QPID - Spring CachingConnectionFactory - Reconnect

Spring Configuration <bean id="jmsQueueConnectionFactory" class="org.apache.qpid.client.AMQConnectionFactory"> <constructor-arg index="0" ...
4
votes
0answers
2k views

How do I set up custom Mongo formatters in Spring?

I've been at this for a few hours and haven't found anyone that's gotten this working yet. I want to persist a BigDecimal object in Mongo, but Mongo doesn't natively support BigDecimal. I followed ...
3
votes
0answers
185 views

Spring connection pooling configurations

I've been searching around the web for some time now and i've yet to fix this issue: I have the following datasource configuration: <bean id="cpms.prod.ds" ...
3
votes
0answers
272 views

how to invoke multiple http webservice in mule flow in transaction?

I am new to mule. I have a spring-hibernate mule setup. Suppose there are 3 webservice.Aim is to invoke all those webservice in a mule flow so that all 3 will be in a transaction. so that suppose if ...
3
votes
0answers
672 views

Could not commit Hibernate transaction; nested exception is org.hibernate.Transaction Exception: JDBC commit failed

I am using Windows Azure SQL Server in my application when i connect to application it shows following error. org.springframework.transaction.TransactionSystemException: Could not commit Hibernate ...
3
votes
0answers
124 views

Do “pure Spring” based servlets have Endpoint URL like CXF based WSDL have?

I have a perfectly working demo server/client apps pair using Spring (only!) -- no CXF or WSDL involved. It runs with the help of Apache Tomcat 7.0.34. I was curious to see whether I can see any ...
3
votes
0answers
2k views

BeanFactory not initialized or already closed - call 'refresh'

I know there has been many previous posts on this topic but none of them helped me resolve my issue. When throwing my service onto my server I receive the following error message: ...
3
votes
0answers
330 views

Handling multiple Rest web services using Spring and Castor

Would anyone be able to advise me on the best way of handling access to multiple Rest web services using Springs RestTemplate? I know that the RestTemplate object has a message converter reference ...
3
votes
0answers
213 views

Support for X509PKIPathv1 in xws-security for Spring-WS

I'm trying to send a request to an existing webservice. This webservice is not government by me. The security policy of this webservice requires me to send my complete certificate chain in my SOAP ...
3
votes
0answers
615 views

Spring WS and JAXB - Configuring SOAPMessageDispatcher, DefaultMethodEndpointAdapter and MarshallingPayloadMethodProcessor

When working with Spring-WS, the configuration is very minimal because i have always been using annotations. Recently i have been trying to test out how to include attachements in SOAP responses and ...
3
votes
0answers
765 views

Spring AspectJ fails when double-proxying interface: Could not generate CGLIB subclass of class

I'm using Spring's <aop:aspectj-autoproxy /> to proxy some JPA repository interfaces. However, the proxying is failing with the following Cannot subclass final class class $Proxy80: Could ...
3
votes
0answers
654 views

Spring security OAuth2

I've setup an OAuth2 server with spring security. I've been following the tonr2 and sparklr2 examples online. I've been able to make requests just fine to get an "auth_token" from my server. The ...
3
votes
0answers
419 views

MBean persistence

i have problem with persistence my config mbean. My configuration: <bean id="adminMBean" class="pl.mobileexperts.catchme.mbeans.AdminSettingsMBean"></bean> <bean id="exporter" ...
3
votes
0answers
414 views

hibernate-envers RevisionListener spring integration as spring bean

I need to do some database processing in revision listener of hibernate-envers. For that I need inejction capabilities of Spring Framework. How can this be implemented? Here is the code representing ...
3
votes
0answers
361 views

LocalValidatorFactoryBean causing Spring MVC Internal Server Error

I am using JSR-303 bean validation in a Spring MVC project. Everything works fine when I have a JSR-303 provider on the classpath, and leave all other validation settings in their default modes. I'd ...
3
votes
0answers
952 views

Spring MVC - AlwaysUseFullPath configuration for annotation based mappings

I am developing a Spring MVC application. I am moving away from XML configuration of the Controllers to annotation based config using @Controller and @RequestMapping to define the URL mapping to ...
3
votes
0answers
945 views

How can I set a custom PropertyEditorSupport.setAsText(String) for spring's form select list?

I have a spring form. The form contains a select list that is bound to an enum type. I have also added a "choose" option to the select list that isn't represented in the enum. I have seen some ...
3
votes
0answers
630 views

Translating PersistenceException to DataAccessException in Spring with EclipseLinkJpaDialect

Hallo. I have the same issue explained here The main difference is that I use EclipseLink as JpaProvider. So I configured my entityManagerFactory as below: <bean id="entityManagerFactoryCont0" ...
3
votes
0answers
3k views

“ORA-31011: XML parsing failed” when inserting an XML document into a table with XMLType column using Hibernate

I want to store XML data in an Oracle XMLType column with registered XML schema file. Both XML files and the XSD schema are valid and XMLs conform to the schema. To get Hibernate work with XMLType, I ...
3
votes
0answers
109 views

SpringSyncTransaction with Grails Searchable

I'm trying to use the SpringSyncTransaction with the Grails Searchable plugin but can't set the transactionManager on the LocalCompassBean as suggested. It appears that Searchable does not use the ...
3
votes
0answers
335 views

Get bean post processors in parent bean factory to process beans in child factories

I have a parent bean factory and I'd like a BeanPostProcessor in it to post process beans in child factories. AFAIK, this isn't supported in Spring. What are my alternatives? (except of course to ...
2
votes
0answers
11 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 ...
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 ...
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 ...
2
votes
0answers
36 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 ...
2
votes
0answers
78 views

Need to upload multiple files at once

I need to upload 1000 files all at once using struts2 I have the following answers but none of them suits the purpose. Using one of them I can click on the button to have more input fields but if I ...
2
votes
0answers
97 views

AJAX and CSRF in Spring

I'm sending a CSRF token in an HTTP request header and in a POST hidden field to guard against CSRF attacks something like the following. var request; var timeout; function insert(callback) { ...
2
votes
0answers
50 views

Thymeleaf button submitting error

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head> <title>Add User Page</title> <meta charset="utf-8" /> ...
2
votes
0answers
100 views

CORS with Authorization fails (NS_ERROR_DOM_BAD_URI)

Sorry for posting this rather large post. But I don't see a way to get it any smaller. Blame CORS :) Versions: Angularjs Version: 1.1.3 Jetty Version: 8.1.9 Jetty Servlets Version: 8.1.9.v20130131 ...
2
votes
0answers
55 views

SPRING + JTA transaction unexpectedly rolled back

I've trouble with spring+JTA! I've a function annotated to @Transactional(propagation=Propagation.REQUIRED_NEW) and this function runs good when I store a lot of data. But I got an exception when I ...
2
votes
0answers
46 views

SpringMVC 3.0 to 3.1 migration of ControllerClassNameHandlerMapping

I have an existing application in Sping 3.0 that uses ControllerClassNameHandlerMapping to map Controller and methods such as: StartController.class is mapped to http://127.0.0.1/app/start/* then ...
2
votes
0answers
112 views

Thread with “While True” loop injected through spring stops after three or four days of execution

I'm developing a web site which is responsible for providing informations about an online radio. The webserver itself get informations from different sources (There is a database fed by an API, and ...
2
votes
0answers
39 views

Is there a mistake about @Inject in spring framework reference documentation 3.2.2?

The documentation contains following paragraph. "As with @Autowired, it is possible to use @Inject at the class-level, field-level, method-level and constructor-argument level." If I have not a ...
2
votes
0answers
136 views

Spring Batch JdbcBatchItemWriter

I'm using a chunk step with a reader and writer. The reader is using a JdbcPagingItemReader with a high page size of 5000. The writer is using JdbcBatchItemWriter with a commit-interval of 5000 on ...
2
votes
0answers
46 views

Spring Android mocking with Robotium

I'm trying to use Robotium with my own project, but the problem is that it uses constantly spring for android to make REST calls. Just a few are network independent. I know that I should make mock ...
2
votes
0answers
45 views

Process XML through ajax in Spring 3.0

How can POST XML (approximately 30000 lines) as data , in jQuery in Spring 3.0 .
2
votes
0answers
66 views

Camel Transaction Configuration Issue: javax.persistence.TransactionRequiredException

I'm configuring JMS Transactions in Camel 2.10.4 routes. When I run my app, a javax.persistence.TransactionRequiredException: no transaction in progress is thrown. From my research, I found out that ...
2
votes
0answers
79 views

Spring STS and code completion from the view (JSP or JSF) pages

Working with JBoss Tools and CDI I very much liked the fact that when I was editing a JSF page I had access to the CDI beans and autocomplete was very helpful. Now with Spring MVC and STS I provide ...
2
votes
0answers
78 views

get all authorities of a specific user

I've got a User entity and each user which exists should have 1 or more specific roles/authorities. For example admin userand so on. So I created an authorities table with 2 fields (username and ...
2
votes
0answers
41 views

Available paths listing for Spring actions

I have an application which exposes RESTful actions using spring annotations and Spring MVC. It looks like @RequestMapping(value = "/example/{someId}", method = RequestMethod.GET, ...
2
votes
0answers
73 views

Create a Guava TypeToken in Spring xml config?

I'd like to be able to inject Guava TypeToken objects by specifying them as a bean in a Spring xml configuration. Is there a good way to do this? Has anyone written any cade/library to make this ...
2
votes
0answers
349 views

A SOAP 1.2 message is not valid when sent to a SOAP 1.1 only endpoint

I am getting a error, when calling a spring-cxf-webservice from spring batch application.This error is happening only when its calling from batch.When calling from the normal soap UI its working ...
2
votes
0answers
73 views

Is it safe to use Spring Custom Events for trigger implementation

In a Spring based application I want to update some database (MySQL) tables whenever one table is updated. The logic is complex so I cannot depend on database triggers. I want to implement the logic ...
2
votes
0answers
101 views

How can I disable WebSphere 8.5 classpath scanning completely?

Is there some way that I can tell a WebSphere 8.5 server to not scan the classpath of my web app as it loads? We're migrating an app from WAS version 6.1 to WAS 8.5. In the 6.1 version, WAS did not ...

1 2 3 4 5 149