You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/12/08 10:33:50 UTC

camel git commit: Fixed example

Repository: camel
Updated Branches:
  refs/heads/master 4c5479489 -> 324a490a2


Fixed example


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/324a490a
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/324a490a
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/324a490a

Branch: refs/heads/master
Commit: 324a490a265bca40600d53c86b410fd45d761781
Parents: 4c54794
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Dec 8 11:33:43 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Dec 8 11:33:43 2016 +0100

----------------------------------------------------------------------
 .../org/apache/camel/example/spring/boot/rest/jpa/Application.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/324a490a/examples/camel-example-spring-boot-rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java b/examples/camel-example-spring-boot-rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
index bfd8c27..c5d920d 100644
--- a/examples/camel-example-spring-boot-rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
+++ b/examples/camel-example-spring-boot-rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
@@ -74,7 +74,7 @@ public class Application extends SpringBootServletInitializer {
             from("timer:new-order?delay=1s&period={{example.generateOrderPeriod:2s}}")
                 .routeId("generate-order")
                 .bean("orderService", "generateOrder")
-                .to("jpa:io.fabric8.quickstarts.camel.Order")
+                .to("jpa:org.apache.camel.example.spring.boot.rest.jpa.Order")
                 .log("Inserted new order ${body.id}");
 
             // A second route polls the DB for new orders and processes them