Initial commit

This commit is contained in:
2020-04-29 14:17:40 +02:00
commit 8e9ac16dbf
39 changed files with 766 additions and 0 deletions

4
base/config/Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM openjdk:8-jdk-alpine
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar","--trace"]

72
base/config/pom.xml Normal file
View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath/>
</parent>
<groupId>com.example</groupId>
<artifactId>config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>config</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR3</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,15 @@
package com.example.config;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}

View File

@ -0,0 +1,29 @@
# Config server
spring.application.name = config-server
welcome.message = Welcome to Spring cloud config server
server.port = 8888
# Config repository
#spring.cloud.config.server.git.uri=${HOME}/Work/Dev/test-spring-boot/config
#SPRING_PROFILES_ACTIVE=native
#spring.cloud.config.server.native.searchLocations=file:///C:/configprop/
spring.profiles.include = native
spring.cloud.config.server.native.search-locations = classpath:config/common.yml, classpath:config/
# Eureka client config
eureka.client.serviceUrl.defaultZone = http://eureka:8761/eureka
# eureka.client.instance.preferIpAddress = true
# Admin client config
spring.boot.admin.client.url=http://admin-server:9090
# Actuator
management.security.enabled = false
management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=always
logging:
level:
ROOT: INFO
org.springframework: TRACE

View File

@ -0,0 +1,23 @@
# Config server
spring.application.name = config-server
welcome.message = Welcome to Spring cloud config server
server.port = 8888
# Config repository
spring.profiles.include = native
spring.cloud.config.server.native.search-locations = classpath:config/common.yml, classpath:config/
#spring.cloud.config.server.git.uri=${HOME}/Work/Dev/test-spring-boot/config
#spring.cloud.config.server.native.searchLocations=file:///C:/configprop/
# Eureka client config
eureka.client.serviceUrl.defaultZone = http://localhost:8761/eureka
# eureka.client.instance.preferIpAddress = true
# Admin client config
spring.boot.admin.client.url=http://localhost:9090
# Actuator
management.security.enabled = false
management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=always

View File

@ -0,0 +1,25 @@
---
# Eureka client config
eureka:
client:
serviceUrl:
defaultZone: "http://eureka:8761/eureka"
# Admin client config
spring:
boot:
admin:
client:
url: "http://admin-server:9090"
# Actuator
management:
security:
enabled: false
endpoints:
web:
exposure:
include: "*"
health:
show-details: "always"

View File

@ -0,0 +1,25 @@
---
# Eureka client config
eureka:
client:
serviceUrl:
defaultZone: "http://eureka:8761/eureka"
# Admin client config
spring:
boot:
admin:
client:
url: "http://admin-server:9090"
# Actuator
management:
security:
enabled: false
endpoints:
web:
exposure:
include: "*"
health:
show-details: "always"

View File

@ -0,0 +1,25 @@
---
# Eureka client config
eureka:
client:
serviceUrl:
defaultZone: "http://localhost:8761/eureka"
# Admin client config
spring:
boot:
admin:
client:
url: "http://localhost:9090"
# Actuator
management:
security:
enabled: false
endpoints:
web:
exposure:
include: "*"
health:
show-details: "always"

View File

@ -0,0 +1,13 @@
package com.example.config;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class DemoApplicationTests {
@Test
void contextLoads() {
}
}