Browse Source

typo + markdown syntax

master
Nicolas Massé 8 years ago
parent
commit
c0a0083e2b
  1. 4
      spring-boot-packaging/README.md

4
spring-boot-packaging/README.md

@ -16,7 +16,7 @@ mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -Darchetyp
By default, the `camel-archetype-spring-boot` archetype creates a sample route By default, the `camel-archetype-spring-boot` archetype creates a sample route
using the Java DSL. In this example, we will use the Spring DSL, so you can remove using the Java DSL. In this example, we will use the Spring DSL, so you can remove
the two following classes: the following two classes:
``` ```
rm src/main/java/fr/itix/camel/spring_boot_packaging/MySpringBean.java rm src/main/java/fr/itix/camel/spring_boot_packaging/MySpringBean.java
rm src/main/java/fr/itix/camel/spring_boot_packaging/MySpringBootRouter.java rm src/main/java/fr/itix/camel/spring_boot_packaging/MySpringBootRouter.java
@ -29,7 +29,7 @@ mkdir src/main/resources/camel/
Create an `hello-world.xml` file in the newly created `camel` directory with Create an `hello-world.xml` file in the newly created `camel` directory with
this content: this content:
``` ```xml
<routes xmlns="http://camel.apache.org/schema/spring"> <routes xmlns="http://camel.apache.org/schema/spring">
<route id="hello-world"> <route id="hello-world">
<from uri="timer:hello?period=1000"/> <from uri="timer:hello?period=1000"/>

Loading…
Cancel
Save