├── .gitignore ├── logback-with-springboot-config.iml ├── pom.xml └── src └── main ├── java └── com │ └── lankydan │ ├── Application.java │ └── service │ ├── MyService.java │ └── MyServiceImpl.java └── resources ├── application-dev.properties ├── application-prod.properties ├── application.properties ├── logback-spring.xml └── logback.xml /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea/ -------------------------------------------------------------------------------- /logback-with-springboot-config.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/logback-with-springboot-config.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/lankydan/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/java/com/lankydan/Application.java -------------------------------------------------------------------------------- /src/main/java/com/lankydan/service/MyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/java/com/lankydan/service/MyService.java -------------------------------------------------------------------------------- /src/main/java/com/lankydan/service/MyServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/java/com/lankydan/service/MyServiceImpl.java -------------------------------------------------------------------------------- /src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/logback-with-springboot-config/HEAD/src/main/resources/logback.xml --------------------------------------------------------------------------------