Skip to main content

Posts

Showing posts from February, 2013

Use recipientList for dynamic routes

I was writing the route in which "to" endpoint was need to be configured dynamically with the URL coming in the body. I was trying to use simple expression language (e.g. ${in.header.test} where test is the property set in the in-message header) also with header method (e.g. header(test)). The routes for the same were: from("direct:test").to("${in.header.test}"); &  from("direct:test").to(header("test"));   after literally every thing i could have. I figured out recipientlist can do the trick e.g. from("direct:test").recipientList("${in.header.test}"); &  from("direct:test").recipientList(header("test")); Hope this works for you too.

Spring: implements interface not working in @Controller

Guys,  I had a @Controller in which I was trying to implement an interface. But i was getting the following error message: PageNotFound WARN  No mapping found for HTTP request with URI [/test/form] in DispatcherServlet with name 'Spring MVC Dispatcher Servlet' where "/test" (at class level) and "/form" (at method level) where my @RequestMapping args.  The issue is described at following link: http://forum.springsource.org/showthread.php?92303-Spring-Servlet-MVC-RequestMapping-breaks-with-AOP-Advice Now you may not find anything wrong with your spring.xml but should check all the xml used by used in the project in out case metrics was causing the problem.  The aop config was overridden by metrics here: https://github.com/ryantenney/metrics-spring#xml-config  By default JDK proxy are created using interface and if controller implements an interface the RequestMapping annotation gets ignored as the targetClass is not being using. http://static.spr