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 2022/03/06 07:30:48 UTC

[camel-spring-boot-examples] branch main updated: CAMEL-17673: camel-core-model - Cleanup Rest DSL

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new b8b02ed  CAMEL-17673: camel-core-model - Cleanup Rest DSL
b8b02ed is described below

commit b8b02ed22ece65ac9535dacadc21047e782642c6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Mar 6 08:30:36 2022 +0100

    CAMEL-17673: camel-core-model - Cleanup Rest DSL
---
 .../java/org/apache/camel/example/spring/boot/rest/jpa/Application.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java b/rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
index 3adb580..8eb9174 100644
--- a/rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
+++ b/rest-jpa/src/main/java/org/apache/camel/example/spring/boot/rest/jpa/Application.java
@@ -46,7 +46,6 @@ public class Application extends SpringBootServletInitializer {
                     .apiProperty("api.title", "Camel REST API")
                     .apiProperty("api.version", "1.0")
                     .apiProperty("cors", "true")
-                    .apiContextRouteId("doc-api")
                     .port(env.getProperty("server.port", "8080"))
                     .bindingMode(RestBindingMode.json);