JAVA-33: Moved spring-boot-camel to parent-boot-2
This commit is contained in:
parent
7d3e128323
commit
7b40f75cc9
|
@ -9,9 +9,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-1</artifactId>
|
<artifactId>parent-boot-2</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../../parent-boot-1</relativePath>
|
<relativePath>../../parent-boot-2</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -38,12 +38,10 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
<version>${spring-boot-starter.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
<version>${spring-boot-starter.version}</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
@ -55,7 +53,6 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring-boot-starter.version}</version>
|
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
@ -68,8 +65,7 @@
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<camel.version>2.19.1</camel.version>
|
<camel.version>3.0.0-M4</camel.version>
|
||||||
<spring-boot-starter.version>1.5.4.RELEASE</spring-boot-starter.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -12,14 +12,18 @@ import org.apache.camel.model.rest.RestBindingMode;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.aop.AopAutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration;
|
||||||
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication(exclude = { WebSocketServletAutoConfiguration.class, AopAutoConfiguration.class, OAuth2ResourceServerAutoConfiguration.class, EmbeddedWebServerFactoryCustomizerAutoConfiguration.class })
|
||||||
@ComponentScan(basePackages="com.baeldung.camel")
|
@ComponentScan(basePackages = "com.baeldung.camel")
|
||||||
public class Application{
|
public class Application {
|
||||||
|
|
||||||
@Value("${server.port}")
|
@Value("${server.port}")
|
||||||
String serverPort;
|
String serverPort;
|
||||||
|
@ -33,12 +37,11 @@ public class Application{
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
ServletRegistrationBean servletRegistrationBean() {
|
ServletRegistrationBean servletRegistrationBean() {
|
||||||
ServletRegistrationBean servlet = new ServletRegistrationBean(new CamelHttpTransportServlet(), contextPath+"/*");
|
ServletRegistrationBean servlet = new ServletRegistrationBean(new CamelHttpTransportServlet(), contextPath + "/*");
|
||||||
servlet.setName("CamelServlet");
|
servlet.setName("CamelServlet");
|
||||||
return servlet;
|
return servlet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
class RestApi extends RouteBuilder {
|
class RestApi extends RouteBuilder {
|
||||||
|
|
||||||
|
@ -47,7 +50,6 @@ public class Application{
|
||||||
|
|
||||||
CamelContext context = new DefaultCamelContext();
|
CamelContext context = new DefaultCamelContext();
|
||||||
|
|
||||||
|
|
||||||
// http://localhost:8080/camel/api-doc
|
// http://localhost:8080/camel/api-doc
|
||||||
restConfiguration().contextPath(contextPath) //
|
restConfiguration().contextPath(contextPath) //
|
||||||
.port(serverPort)
|
.port(serverPort)
|
||||||
|
@ -60,43 +62,43 @@ public class Application{
|
||||||
.component("servlet")
|
.component("servlet")
|
||||||
.bindingMode(RestBindingMode.json)
|
.bindingMode(RestBindingMode.json)
|
||||||
.dataFormatProperty("prettyPrint", "true");
|
.dataFormatProperty("prettyPrint", "true");
|
||||||
/**
|
/**
|
||||||
The Rest DSL supports automatic binding json/xml contents to/from
|
The Rest DSL supports automatic binding json/xml contents to/from
|
||||||
POJOs using Camels Data Format.
|
POJOs using Camels Data Format.
|
||||||
By default the binding mode is off, meaning there is no automatic
|
By default the binding mode is off, meaning there is no automatic
|
||||||
binding happening for incoming and outgoing messages.
|
binding happening for incoming and outgoing messages.
|
||||||
You may want to use binding if you develop POJOs that maps to
|
You may want to use binding if you develop POJOs that maps to
|
||||||
your REST services request and response types.
|
your REST services request and response types.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
rest("/api/").description("Teste REST Service")
|
rest("/api/").description("Teste REST Service")
|
||||||
.id("api-route")
|
.id("api-route")
|
||||||
.post("/bean")
|
.post("/bean")
|
||||||
.produces(MediaType.APPLICATION_JSON)
|
.produces(MediaType.APPLICATION_JSON)
|
||||||
.consumes(MediaType.APPLICATION_JSON)
|
.consumes(MediaType.APPLICATION_JSON)
|
||||||
// .get("/hello/{place}")
|
// .get("/hello/{place}")
|
||||||
.bindingMode(RestBindingMode.auto)
|
.bindingMode(RestBindingMode.auto)
|
||||||
.type(MyBean.class)
|
.type(MyBean.class)
|
||||||
.enableCORS(true)
|
.enableCORS(true)
|
||||||
// .outType(OutBean.class)
|
// .outType(OutBean.class)
|
||||||
|
|
||||||
.to("direct:remoteService");
|
.to("direct:remoteService");
|
||||||
|
|
||||||
|
from("direct:remoteService").routeId("direct-route")
|
||||||
from("direct:remoteService")
|
|
||||||
.routeId("direct-route")
|
|
||||||
.tracing()
|
.tracing()
|
||||||
.log(">>> ${body.id}")
|
.log(">>> ${body.id}")
|
||||||
.log(">>> ${body.name}")
|
.log(">>> ${body.name}")
|
||||||
// .transform().simple("blue ${in.body.name}")
|
// .transform().simple("blue ${in.body.name}")
|
||||||
.process(new Processor() {
|
.process(new Processor() {
|
||||||
@Override
|
@Override
|
||||||
public void process(Exchange exchange) throws Exception {
|
public void process(Exchange exchange) throws Exception {
|
||||||
MyBean bodyIn = (MyBean) exchange.getIn().getBody();
|
MyBean bodyIn = (MyBean) exchange.getIn()
|
||||||
|
.getBody();
|
||||||
|
|
||||||
ExampleServices.example(bodyIn);
|
ExampleServices.example(bodyIn);
|
||||||
|
|
||||||
exchange.getIn().setBody(bodyIn);
|
exchange.getIn()
|
||||||
|
.setBody(bodyIn);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.setHeader(Exchange.HTTP_RESPONSE_CODE, constant(201));
|
.setHeader(Exchange.HTTP_RESPONSE_CODE, constant(201));
|
||||||
|
|
|
@ -13,3 +13,5 @@ management.port=8081
|
||||||
# disable all management enpoints except health
|
# disable all management enpoints except health
|
||||||
endpoints.enabled = true
|
endpoints.enabled = true
|
||||||
endpoints.health.enabled = true
|
endpoints.health.enabled = true
|
||||||
|
|
||||||
|
spring.main.allow-bean-definition-overriding=true
|
Loading…
Reference in New Issue