Changed akka camel URI pattern to akka ActorPath pattern, like akka://system/user/someactor

fixed some fixmes regarding using the reference.conf config
Added some more java tests for custom routes with producers and consumers
changed autoack to autoAck
This commit is contained in:
RayRoestenburg 2012-07-18 08:06:07 +02:00
parent 2472e46263
commit ee4a8afee9
21 changed files with 308 additions and 103 deletions

View file

@ -8,7 +8,7 @@ import akka.camel.javaapi.UntypedConsumerActor;
public class Consumer3 extends UntypedConsumerActor{
@Override
public boolean autoack() {
public boolean autoAck() {
return false;
}

View file

@ -12,7 +12,7 @@ public class CustomRouteBuilder extends RouteBuilder{
}
public void configure() throws Exception {
from("jetty:http://localhost:8877/camel/custom").to(CamelPath.toCamelUri(responder));
from("jetty:http://localhost:8877/camel/custom").to(CamelPath.toUri(responder));
}
}
//#CustomRoute