0
votes
0answers
28 views

spring integration channel details

I am new to Spring integration, Please give your expert guidance on my below doubt. I have the following scenario, I want to use Spring integration a) third party produce a JAXB message ---> b) JMS ...
0
votes
1answer
24 views

Issue with SpringJUnit4ClassRunner, H2 db inetgration test

I am trying to write an integration test using h2 db, I am getting an error as "error: cannot access BlockJUnit4ClassRunner" at the line @RunWith() Can any one suggest something please? I have no ...
0
votes
2answers
41 views

file outbound channel and remote directory expression

I'm try to combine both a SpEL and a bean value to generate a directory-expression="${backup.folder}'+T(java.io.File).separator+new java.text.SimpleDateFormat('yyyyMMdd').format(new ...
0
votes
1answer
54 views

Spring integration message handler : ActiveMQTextMessage

I'm facing a problem using a jdbc-store in a spring-int aggregator component. My flow is like this : ActiveMQ -> aggregator -> jdbc-message-store -> ftp But on handling the messages, i'm facing a ...
2
votes
0answers
126 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 ...
0
votes
1answer
53 views

Hibernate saves empty Spring autobound ojects

I'm using Spring + JSF2 + Hibernate to build a web application. Two relevant classes look like this: @Entity @Table(name="people") @Named public class Person implements Serializable { private int id; ...
0
votes
1answer
113 views

I can't get FTP to work using Spring Integration

I am trying to setup my application to receive files using Spring Integration (version 2.2.0.RELEASE). When I start Tomcat (where application is deployed), I get the following error message. Anyone ...
0
votes
0answers
186 views

Spring Integration message-driven-channel-adapter Error with concurrent consumers

I use message-driven-channel-adapter of spring-integration to retrieve messages from a queue. The configuration that i use is: <bean name="inQueue" ...
0
votes
0answers
46 views

jcaptcha in spring 3

I used spring 2.5 to implement jcaptcha.Its working fine. When I try using Spring 3, i get namespace exception.I use jcaptcha-all-1.0-RC6.jar for captcha generation. I implemented jcaptcha in spring 3 ...
0
votes
0answers
25 views

Sping integration channel message count

I have 2 questions. Here they are: 1)Is there any way to determine the number of messages waiting to be processed in a spring integration channel? While the number of customers keep increasing along ...
2
votes
1answer
183 views

multiple inbound-channel-adapter of spring integration using the same channel

I am using inbound-channel-adapter of spring integration. I want to poll under two different directories -one per file category- and parse the files that are located there. The code that i use is: ...
0
votes
1answer
539 views

integrating Spring 3 and Tiles 3 - NoClassDefFoundError

I'm developing a project in NetBeans 7.2.1. I have downloaded newest version 3.2.1 of Spring and newset verion 3.0.1 of Apache Tiles, since I want to template my views with something better than JSP ...
0
votes
1answer
222 views

“Bean named XXX must be of type[XXX], but was actually of type[XXX]”

when I integrate spring and mybatis, I encountered a error output, saying that: Bean named 'sqlSessionFactory' must be of type [org.mybatis.spring.SqlSessionFactoryBean], but was actually of type ...
1
vote
2answers
214 views

What's the correct way to use hibernate with spring

I recently started using hibernate and spring. In the beginning I was told to use the sessionFactory and openSession together with beginTransaction to do db calls. Later I heard about dao's so I ...
0
votes
1answer
58 views

Theoretical: Two system integration through web service

I have theoretical question for you guys. Lastly i am coping with integration of two different systems which are exposed as web applications. Everywhere i read advice to do this via 3rd party web ...
0
votes
0answers
99 views

MessageTimeoutException: Timed out waiting for response in Spring Integration

I am using Spring integration to integrate various components over TCP network. I am setting payload as my own user defined object. I am sending the request to component and recieving the response ...
1
vote
0answers
31 views

Spring legacy integration?

I have a legacy java application making use of xmlparser.jar. How can i make use of the legacy java application the problem is xmlparser when placed in spring application classpath causes problems in ...
0
votes
1answer
172 views

Spring web-scoped beans and axis2

I want to use spring web-scoped beans in web-service written on AXIS2 framework. How to configure it? Axis2 and Spring documentation disagree with each other. Axis2 documentation says: For the ...
0
votes
1answer
174 views

Spring integration - message store recovery/resend

I have a question regarding the behavior of a jdbc message store. I notice that if a failure occurs for instance if the following sequence is followed: 1)inbound-channel-adapter - Creates a message ...
2
votes
1answer
344 views

Spring Integration - Delay poller for mail inbound channel adapter not considered

I've configured an inbound-channel-adapter to receive mail and i set up a poller with fixed-delay = 15000. When max-messages-per-poll is set to low value (less than the number of messages in the ...
1
vote
1answer
342 views

Integrating Spring Batch with Spring MVC

Can you guys guide me to some nice tutorial containing Context-Configuration(applicationContext.xml) details and some example code for running a simple batch job using Spring Batch from within my ...
1
vote
0answers
461 views

Spring Integration | FTP - FILE Adapter Issue

The application which i am working on has an Integration Layer build using Spring Integration 2.5, It tries to pull a CSV file from FTP server using FTP adapter and drops it on to local server which ...
0
votes
1answer
163 views

Reading of files with max-messages-per-poll=10 and prevent-duplicates=false

I'm trying to read files from the directory. If file cannot be processed it stays there to be tried later. <file:inbound-channel-adapter prevent-duplicates="false" id="fileInput" ...
1
vote
1answer
290 views

How to attach a file in body of email using spring integration

I have a situation where I need to attached file in the body of the email rather than in the header. For example in Microsoft outlook if message type set to Rich Text one can drag and drop file in the ...
0
votes
0answers
136 views

Attach spring javadoc to spring project

I'm trying to export the javadoc of my spring mvc project. The problem is that even if I set the javadoc path to every my spring referenced library (right click->properties->javadoc location). When I ...
0
votes
1answer
527 views

Spring Integration, delete file in outbound channel adapter

I am using Spring Integration to poll a directory for a File, process this file in a service class, write this file to an output directory and then delete the original file. I have the following XML ...
1
vote
1answer
176 views

Spring Integration Channels on Content

I have used Spring Integration in my current successfully for some of the needs. Awesome.. There is some weird behavior observed on a heavy load where-in the same message seems to be processed more ...
1
vote
0answers
105 views

Spring integration - reliable message delivery with persisted messages

My current setup (partly) is like this: <channel id="chainInboundChannel"> <queue message-store="mongoDbMessageStore"/> </channel> <chain id="myChain" ...
0
votes
0answers
115 views

Spring Security Delegating Authentication to CAS

I was looking through the questions between CAS and Spring Security, but I have not found the exact situation for this. My question is in regards with Setting up Spring Security to have it's users ...
0
votes
1answer
181 views

SPRING MVC with CAS Integration

Can any one plz share me the working sample projects of both CAS cleint as well as CAS server. As I have been searching for working example but yet to fint any such a bundled examples clearly. please ...
1
vote
1answer
977 views

Redirecting from a legacy Servlet to Spring 3 and from Spring 3 to a legacy Servlet

I'm learning Spring by integrating Spring 3 into a legacy Servlet application and gradually converting the legacy app over. A web.xml *-servlet.xml similar to the ones I am using are posted below. ...
2
votes
1answer
244 views

Testing RabbitMQ and Spring Integration

I'm developing an application with Spring Integration and RabbitMq and I'm wondering how to test it (integration tests). I think SoapUI can be a great Solution but it doesn't support RAbbitMq, ...
0
votes
2answers
318 views

Spring, JPA — integration test of CRUD of entity which has many transitive dependencies of other entities

I have entity e.g. Product which aggregates other entities such as Category. Those entities can also aggregate other entities and so on. Now I need to test my queries to database. For simple CRUD I ...
0
votes
2answers
112 views

Spring, JPA — testing abstract class

I have a lot of entities in application and I use JPA implementation for persisting them, therefore most of CRUD methods across DAOs are similar (see example class diagram below). For this purpose ...
9
votes
4answers
3k views

Integrating Play framework 2.0 and Spring framework

I have developed a Spring/JPA application: the service, repository and domain layers are nearing completion. The only layer that is missing is the web layer. I am considering using Playframework 2.0 ...
0
votes
2answers
399 views

Transaction Management in Spring-Integration framework and apache Camel

I'm browsing Integration frameworks to choose the best one for my integration problem. one thing that I want to know is transaction management in multiple application integration context, supported or ...
2
votes
1answer
478 views

Configure interval based cron in Spring JMS integration

I need to forward message from Queue1 to Queue2 in specified interval but NOT just after the message arrived in Queue1. Below is my config. <int-jms:inbound-channel-adapter ...
2
votes
3answers
2k views

Spring 3 MVC Controller integration test - inject Principal into method

As part of Spring 3 MVC it is possible to inject the currently logged in user (Principle) object into a controller method. E.g. @Controller public class MyController { ...
3
votes
1answer
1k views

Spring component-scan in OSGi finds nothing

Using the Spring-Context MANIFEST definitions, I'm trying to do a component-scan to search packages for Spring annotated beans. My Spring XML configuration looks something like this: <?xml ...
2
votes
3answers
2k views

Spring + Vaadin integration design patterns

What design patterns are used when integrating spring with vaadin/gwt? We're using spring with hibernate in our application, every dao is a spring bean. Question is what is the best way to use them on ...
0
votes
2answers
759 views

how does actually spring integrates with struts 2

I am new to Struts and searched online for tutorial and examples that shows integration of spring with struts 2. Some examples talk about using struts spring plugin in struts-config.xml and some ...
0
votes
1answer
228 views

Spring, eclipselink, compass integration

I went through several articles and configured the following, but i can see some problems with transaction management. Please let me know whether i'm using compass correctly in the below ...
0
votes
1answer
421 views

Servlet and Spring integration

Here is my JSF and spring integration: I add <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> in the web.xml such that the Spring beans ...
1
vote
1answer
1k views

Testing a spring controller method having @ModelAttribute as parameter

I am trying to test a controller with this method: @RequestMapping(value="/test") public ModelAndView generateRecords(@ModelAttribute("Employee") Employee employee) { And I would like to know how ...
1
vote
1answer
660 views

Integrating Spring & JDBC into JSF2 login page

I've used a properly running example project (documentation) to create a simple JSF login page working with Spring Security on Tomcat 7 using Eclipse. The above example stores usernames, passwords and ...
0
votes
1answer
1k views

understanding AMFChannel in flex and message broker

I need to use AMFChannel in order to connect to RemoteObject in flex tried searching a lot but couldn;t get source to understand the two parameters being passed to the constructor ... I am using ...
1
vote
0answers
2k views

problem in saving table to database using hibernate using hibernate.hbm2ddl.auto , getting run-time exception

I am trying to map my java object to MySQL database using hibernate but i am getting following exception Exception in thread "main" org.springframework.dao.InvalidDataAccessResourceUsageException: ...
0
votes
1answer
325 views

event handler method not getting invoked in jbpm

I have a spring 3 and jbpm 4.4 integration environment. However in one of my tasks I have provided a event as per jpdl specs. My jpdl snippet with the task element looks like this: <task ...
6
votes
3answers
7k views

Spring Integration or Apache HTTP Client

I have a spring application which requires to call REST based external API calls for some data. The data format from the API is JSON. My question is which one of the following options is better and ...
0
votes
1answer
895 views

ClassNotFound exception in jbpm + Spring integration

All, I am trying to get Spring + jbpm + JPA + JTA integration on websphere. I have kept the jbpm.jar in the WEB-INF\lib directory.. still I keep getting this exception trace... [7/5/11 ...

1 2