├── .gitignore ├── README.md ├── springboot ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ └── springboot │ │ │ ├── DataSourceConfig.java │ │ │ ├── SpringbootApplication.java │ │ │ ├── Swagger2.java │ │ │ ├── WebSecurityConfig.java │ │ │ ├── aspect │ │ │ └── WebLogAspect.java │ │ │ ├── dao │ │ │ └── UserMapper.java │ │ │ ├── domain │ │ │ └── User.java │ │ │ ├── exception │ │ │ ├── ErrorInfo.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ └── MyException.java │ │ │ ├── rabbitmq │ │ │ ├── RabbitConfig.java │ │ │ ├── Receiver.java │ │ │ └── Sender.java │ │ │ ├── service │ │ │ ├── UserRepository.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ │ │ ├── task │ │ │ └── ScheduledTasks.java │ │ │ └── web │ │ │ ├── HelloController.java │ │ │ └── UserController.java │ └── resources │ │ ├── application-dev.properties │ │ ├── application-prod.properties │ │ ├── application-test.properties │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── static │ │ └── 1.jpg │ │ └── templates │ │ ├── error.html │ │ └── index.html │ └── test │ └── java │ └── com │ └── zheng │ ├── SpringbootApplicationTests.java │ └── springboot │ └── web │ └── HelloControllerTests.java ├── wms ├── .gitignore ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── zheng │ │ │ │ ├── WmsApplication.java │ │ │ │ ├── controller │ │ │ │ └── WmsController.java │ │ │ │ ├── domain │ │ │ │ ├── Inventory.java │ │ │ │ └── Records.java │ │ │ │ ├── repository │ │ │ │ ├── InventoryRepository.java │ │ │ │ └── RecordsRepository.java │ │ │ │ └── service │ │ │ │ └── WmsService.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── zheng │ │ └── WmsApplicationTests.java └── wms.sql ├── zheng-springboot-Initializr ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ └── Application.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java ├── zheng-springboot-api-gateway ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── zheng │ │ ├── ApiGatewayApplication.java │ │ └── filter │ │ └── AccessFilter.java │ └── resources │ └── application.properties ├── zheng-springboot-compute-service ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ ├── ComputeServiceApplication.java │ │ │ └── web │ │ │ └── ComputeController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java ├── zheng-springboot-config-client ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ ├── ConfigClientApplication.java │ │ │ └── web │ │ │ └── TestController.java │ └── resources │ │ └── bootstrap.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java ├── zheng-springboot-config-server ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ └── ConfigServerApplication.java │ └── resources │ │ ├── application.properties │ │ ├── zheng-dev.properties │ │ ├── zheng-prod.properties │ │ ├── zheng-test.properties │ │ └── zheng.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java ├── zheng-springboot-eureka-feign ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ ├── EurekaFeignApplication.java │ │ │ ├── service │ │ │ ├── ComputeClient.java │ │ │ └── ComputeClientHystrix.java │ │ │ └── web │ │ │ └── ConsumerController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java ├── zheng-springboot-eureka-ribbon ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zheng │ │ │ ├── EurekaRibbonApplication.java │ │ │ ├── service │ │ │ └── ComputeService.java │ │ │ └── web │ │ │ └── ConsumerController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── zheng │ └── ApplicationTests.java └── zheng-springboot-eureka-server ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── zheng │ │ └── EurekaServerApplication.java └── resources │ └── application.properties └── test └── java └── com └── zheng └── ApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/README.md -------------------------------------------------------------------------------- /springboot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/.gitignore -------------------------------------------------------------------------------- /springboot/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/mvnw -------------------------------------------------------------------------------- /springboot/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/mvnw.cmd -------------------------------------------------------------------------------- /springboot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/pom.xml -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/DataSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/DataSourceConfig.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/SpringbootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/SpringbootApplication.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/Swagger2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/Swagger2.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/WebSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/WebSecurityConfig.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/aspect/WebLogAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/aspect/WebLogAspect.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/dao/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/dao/UserMapper.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/domain/User.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/exception/ErrorInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/exception/ErrorInfo.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/exception/GlobalExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/exception/GlobalExceptionHandler.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/exception/MyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/exception/MyException.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/rabbitmq/RabbitConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/rabbitmq/RabbitConfig.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/rabbitmq/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/rabbitmq/Receiver.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/rabbitmq/Sender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/rabbitmq/Sender.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/service/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/service/UserRepository.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/service/UserService.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/service/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/service/UserServiceImpl.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/task/ScheduledTasks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/task/ScheduledTasks.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/web/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/web/HelloController.java -------------------------------------------------------------------------------- /springboot/src/main/java/com/zheng/springboot/web/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/java/com/zheng/springboot/web/UserController.java -------------------------------------------------------------------------------- /springboot/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | profile.env=dev -------------------------------------------------------------------------------- /springboot/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | profile.env=prod -------------------------------------------------------------------------------- /springboot/src/main/resources/application-test.properties: -------------------------------------------------------------------------------- 1 | profile.env=test -------------------------------------------------------------------------------- /springboot/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/resources/banner.txt -------------------------------------------------------------------------------- /springboot/src/main/resources/static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/resources/static/1.jpg -------------------------------------------------------------------------------- /springboot/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /springboot/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /springboot/src/test/java/com/zheng/SpringbootApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/test/java/com/zheng/SpringbootApplicationTests.java -------------------------------------------------------------------------------- /springboot/src/test/java/com/zheng/springboot/web/HelloControllerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/springboot/src/test/java/com/zheng/springboot/web/HelloControllerTests.java -------------------------------------------------------------------------------- /wms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/.gitignore -------------------------------------------------------------------------------- /wms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/pom.xml -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/WmsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/WmsApplication.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/controller/WmsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/controller/WmsController.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/domain/Inventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/domain/Inventory.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/domain/Records.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/domain/Records.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/repository/InventoryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/repository/InventoryRepository.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/repository/RecordsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/repository/RecordsRepository.java -------------------------------------------------------------------------------- /wms/src/main/java/com/zheng/service/WmsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/java/com/zheng/service/WmsService.java -------------------------------------------------------------------------------- /wms/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/main/resources/application.properties -------------------------------------------------------------------------------- /wms/src/test/java/com/zheng/WmsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/src/test/java/com/zheng/WmsApplicationTests.java -------------------------------------------------------------------------------- /wms/wms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/wms/wms.sql -------------------------------------------------------------------------------- /zheng-springboot-Initializr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-Initializr/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-Initializr/src/main/java/com/zheng/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-Initializr/src/main/java/com/zheng/Application.java -------------------------------------------------------------------------------- /zheng-springboot-Initializr/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zheng-springboot-Initializr/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-Initializr/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-api-gateway/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-api-gateway/src/main/java/com/zheng/ApiGatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-api-gateway/src/main/java/com/zheng/ApiGatewayApplication.java -------------------------------------------------------------------------------- /zheng-springboot-api-gateway/src/main/java/com/zheng/filter/AccessFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-api-gateway/src/main/java/com/zheng/filter/AccessFilter.java -------------------------------------------------------------------------------- /zheng-springboot-api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-api-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-compute-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-compute-service/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-compute-service/src/main/java/com/zheng/ComputeServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-compute-service/src/main/java/com/zheng/ComputeServiceApplication.java -------------------------------------------------------------------------------- /zheng-springboot-compute-service/src/main/java/com/zheng/web/ComputeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-compute-service/src/main/java/com/zheng/web/ComputeController.java -------------------------------------------------------------------------------- /zheng-springboot-compute-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-compute-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-compute-service/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-compute-service/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-config-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-client/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-config-client/src/main/java/com/zheng/ConfigClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-client/src/main/java/com/zheng/ConfigClientApplication.java -------------------------------------------------------------------------------- /zheng-springboot-config-client/src/main/java/com/zheng/web/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-client/src/main/java/com/zheng/web/TestController.java -------------------------------------------------------------------------------- /zheng-springboot-config-client/src/main/resources/bootstrap.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-client/src/main/resources/bootstrap.properties -------------------------------------------------------------------------------- /zheng-springboot-config-client/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-client/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-config-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-server/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/java/com/zheng/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-server/src/main/java/com/zheng/ConfigServerApplication.java -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/resources/zheng-dev.properties: -------------------------------------------------------------------------------- 1 | from=local-dev -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/resources/zheng-prod.properties: -------------------------------------------------------------------------------- 1 | from=local-prod -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/resources/zheng-test.properties: -------------------------------------------------------------------------------- 1 | from=local-test -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/main/resources/zheng.properties: -------------------------------------------------------------------------------- 1 | from=local -------------------------------------------------------------------------------- /zheng-springboot-config-server/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-config-server/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/main/java/com/zheng/EurekaFeignApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/main/java/com/zheng/EurekaFeignApplication.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/main/java/com/zheng/service/ComputeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/main/java/com/zheng/service/ComputeClient.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/main/java/com/zheng/service/ComputeClientHystrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/main/java/com/zheng/service/ComputeClientHystrix.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/main/java/com/zheng/web/ConsumerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/main/java/com/zheng/web/ConsumerController.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-eureka-feign/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-feign/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/src/main/java/com/zheng/EurekaRibbonApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/src/main/java/com/zheng/EurekaRibbonApplication.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/src/main/java/com/zheng/service/ComputeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/src/main/java/com/zheng/service/ComputeService.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/src/main/java/com/zheng/web/ConsumerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/src/main/java/com/zheng/web/ConsumerController.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-eureka-ribbon/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-ribbon/src/test/java/com/zheng/ApplicationTests.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-server/pom.xml -------------------------------------------------------------------------------- /zheng-springboot-eureka-server/src/main/java/com/zheng/EurekaServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-server/src/main/java/com/zheng/EurekaServerApplication.java -------------------------------------------------------------------------------- /zheng-springboot-eureka-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /zheng-springboot-eureka-server/src/test/java/com/zheng/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuzheng/zheng-springboot-demo/HEAD/zheng-springboot-eureka-server/src/test/java/com/zheng/ApplicationTests.java --------------------------------------------------------------------------------