How to deploy a Spring Integration app in Tomcat?

一笑奈何 提交于 2019-12-10 15:07:14

问题


I've gone through the "Spring Integration in 10 minutes" tutorial for setting up a basic Spring Integration application. I'd like to deploy this application in Tomcat and have the input channel live on the server and send the output back to a client, but I'm having a difficult time finding any examples of this.

Could anyone provide me with either some links to a tutorial for how to do this or any other kind of guidance? All help is much appreciated!


回答1:


Here's the response I got from the Spring Integration forums:

Hi

First - try building simple Spring MVC application (no Spring-Int!) - this will get you know how to integrate Java Web Applications (particularily web.xml file) with Spring Framework (spring context XMLs). Then try adding Spring Integration beans (channels, filters, ...) to Spring configuration.

The simplest scenario is this:

  • configure DispatcherServlet in web.xml
  • build simple Spring MVC Controller
  • add Spring Integration beans to DispatcherServlet's XML configuration
  • inject channel to controller and use it

This is rough tutorial on how to send messages in response of client's HTTP request.

Then you can try using Spring-Integration web services support where you can configure everything without writing controller's code.

So - first try some Spring MVC samples and then try Spring Integration

good luck Grzegorz Grzybek

Source




回答2:


Maybe try the Spring Integration forum?



来源:https://stackoverflow.com/questions/1667867/how-to-deploy-a-spring-integration-app-in-tomcat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!