v3.0.1 add eureka server for testing

prototype
Yan 4 days ago
parent b5c8890bfb
commit 2f7c4075f7

@ -5,7 +5,7 @@ meta {
}
get {
url: http://localhost:9090/services/api/session/a3518555-5a96-42a6-a5ec-958c4963a65e
url: http://localhost:8761/services/api/session/a3518555-5a96-42a6-a5ec-958c4963a65e
body: none
auth: basic
}

@ -5,7 +5,7 @@ meta {
}
get {
url: http://localhost:9090/services/api/session
url: http://localhost:8761/services/api/session
body: none
auth: basic
}

@ -5,7 +5,7 @@ meta {
}
post {
url: http://localhost:9090/services/api/login/a3518555-5a96-42a6-a5ec-958c4963a65e
url: http://localhost:8761/services/api/login/a3518555-5a96-42a6-a5ec-958c4963a65e
body: none
auth: basic
}

@ -5,7 +5,7 @@ meta {
}
post {
url: http://localhost:9090/services/api/session
url: http://localhost:8761/services/api/session
body: json
auth: basic
}

@ -1,11 +1,13 @@
server:
port: 9090
port: 8761
camel:
springboot:
main-run-controller: true
spring:
application:
name: eureka-server
activemq:
broker-url: "tcp://localhost:61616"
ldap:
@ -21,3 +23,10 @@ app:
username: "app"
password: "app"
mapper-package: "com.example.sbcamel.mapper"
eureka:
client:
service-url:
defaultZone: http://cxfrs:password@localhost:8761/eureka/,http://cxfrs:password@localhost:8762/eureka/
register-with-eureka: false
fetch-registry: false

@ -1,11 +1,13 @@
server:
port: 9091
port: 8762
camel:
springboot:
main-run-controller: true
spring:
application:
name: eureka-server
activemq:
broker-url: "tcp://localhost:61616"
ldap:
@ -21,3 +23,10 @@ app:
username: "app"
password: "app"
mapper-package: "com.example.sbcamel.mapper"
eureka:
client:
service-url:
defaultZone: http://cxfrs:password@localhost:8761/eureka/,http://cxfrs:password@localhost:8762/eureka/
register-with-eureka: false
fetch-registry: false

@ -4,23 +4,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>camel-springboot-activemq6-example</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<name>camel-springboot-activemq6-example</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.9</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<camel.version>4.8.4</camel.version>
<springboot.version>${project.parent.version}</springboot.version>
<spring-boot-dependencies.version>3.4.4</spring-boot-dependencies.version>
<spring-cloud-dependencies.version>2024.0.1</spring-cloud-dependencies.version>
<mybatis.version>3.5.19</mybatis.version>
<mybatis-spring.version>3.0.4</mybatis-spring.version>
<htmlunit.version>4.11.1</htmlunit.version>
<guava.version>33.1.0-jre</guava.version>
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
</properties>
<dependencyManagement>
@ -35,7 +33,14 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${springboot.version}</version>
<version>${spring-boot-dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud-dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -60,6 +65,10 @@
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
@ -103,7 +112,6 @@
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>${htmlunit.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
@ -138,6 +146,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
@ -146,6 +155,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot-dependencies.version}</version>
<configuration>
<mainClass>com.example.sbcamel.Boot</mainClass>
</configuration>

@ -6,8 +6,10 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class Boot {
private static final Logger logger = LoggerFactory.getLogger(Boot.class);

@ -34,7 +34,8 @@ public class SecurityConfig {
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http.authorizeHttpRequests((authorize) -> authorize.requestMatchers(HttpMethod.GET, "/**")
.hasAuthority(ROLE_BACKEND).requestMatchers(HttpMethod.POST, "/**").hasAuthority(ROLE_SERVER))
.hasAuthority(ROLE_BACKEND).requestMatchers(HttpMethod.POST, "/**").hasAuthority(ROLE_SERVER)
.requestMatchers(HttpMethod.PUT, "/**").permitAll())
.httpBasic(Customizer.withDefaults()).csrf(csrf -> csrf.disable());
return http.build();
}

Loading…
Cancel
Save