├── .txlcn ├── service-a-10081.mv.db ├── service-b-10082.mv.db ├── service-b-10083.mv.db └── service-c-10084.mv.db ├── LICENSE ├── README.md ├── config-server ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── config │ │ │ └── configserver │ │ │ ├── ConfigServerApplication.java │ │ │ └── MyPropertiesHandler.java │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ └── application.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── config │ └── configserver │ └── ConfigServerApplicationTests.java ├── eureka-server ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── eureka │ │ │ └── eurekaserver │ │ │ └── EurekaServerApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── eureka │ └── eurekaserver │ └── EurekaServerApplicationTests.java ├── pom.xml ├── service-a ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── servicea │ │ │ ├── MyEnvironmentPostProcessor.java │ │ │ ├── ServiceAApplication.java │ │ │ ├── controller │ │ │ └── TestController.java │ │ │ ├── feign │ │ │ ├── BFeign.java │ │ │ └── CFeign.java │ │ │ ├── pojo │ │ │ ├── TbDescription.java │ │ │ └── TbUser.java │ │ │ └── service │ │ │ ├── TestService.java │ │ │ └── TestServiceImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ ├── application.properties │ │ ├── config.properties │ │ ├── datasource.properties │ │ ├── eureka.properties │ │ ├── feign.properties │ │ ├── tx-lcn.properties │ │ └── zipkin.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── servicea │ └── ServiceAApplicationTests.java ├── service-b1 ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── serviceb1 │ │ │ ├── MyEnvironmentPostProcessor.java │ │ │ ├── ServiceB1Application.java │ │ │ ├── controller │ │ │ └── TestController.java │ │ │ ├── pojo │ │ │ └── TbDescription.java │ │ │ └── service │ │ │ ├── TestService.java │ │ │ └── TestServiceImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ ├── application.properties │ │ ├── config.properties │ │ ├── datasource.properties │ │ ├── eureka.properties │ │ ├── feign.properties │ │ ├── tx-lcn.properties │ │ └── zipkin.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── serviceb1 │ └── ServiceB1ApplicationTests.java ├── service-b2 ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── serviceb2 │ │ │ ├── MyEnvironmentPostProcessor.java │ │ │ ├── ServiceB2Application.java │ │ │ ├── controller │ │ │ └── TestController.java │ │ │ ├── pojo │ │ │ └── TbDescription.java │ │ │ └── service │ │ │ ├── TestService.java │ │ │ └── TestServiceImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ ├── application.properties │ │ ├── config.properties │ │ ├── datasource.properties │ │ ├── eureka.properties │ │ ├── feign.properties │ │ ├── tx-lcn.properties │ │ └── zipkin.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── serviceb2 │ └── ServiceB2ApplicationTests.java ├── service-c ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── servicec │ │ │ ├── MyEnvironmentPostProcessor.java │ │ │ ├── ServiceCApplication.java │ │ │ ├── controller │ │ │ └── TestController.java │ │ │ ├── pojo │ │ │ └── TbDescription.java │ │ │ └── service │ │ │ ├── TestService.java │ │ │ └── TestServiceImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ ├── application.properties │ │ ├── config.properties │ │ ├── datasource.properties │ │ ├── eureka.properties │ │ ├── feign.properties │ │ ├── tx-lcn.properties │ │ └── zipkin.properties │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── servicec │ └── ServiceCApplicationTests.java ├── sso-server ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── sso │ │ │ └── ssoserver │ │ │ ├── RedisUtil.java │ │ │ └── SsoServerApplication.java │ └── resources │ │ ├── application.properties │ │ └── templates │ │ └── login.html │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── sso │ └── ssoserver │ └── SsoServerApplicationTests.java ├── txlcn-tm ├── pom.xml └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── huanzi │ │ │ └── qch │ │ │ └── txlcn │ │ │ └── tm │ │ │ └── TxlcnTmApplication.java │ └── resources │ │ ├── application.properties │ │ └── t_tx_exception.sql │ └── test │ └── java │ └── cn │ └── huanzi │ └── qch │ └── txlcn │ └── tm │ └── TxlcnTmApplicationTests.java ├── zipkin-server ├── pom.xml └── src │ └── main │ ├── java │ └── cn │ │ └── huanzi │ │ └── qch │ │ └── zipkin │ │ └── zipkinserver │ │ └── ZipkinServerApplication.java │ └── resources │ └── application.properties └── zuul-server ├── pom.xml └── src ├── main ├── java │ └── cn │ │ └── huanzi │ │ └── qch │ │ └── zuul │ │ └── zuulserver │ │ ├── ZuulServerApplication.java │ │ ├── config │ │ └── ZuulRouteLocator.java │ │ ├── controller │ │ └── ZuulRouteController.java │ │ ├── feign │ │ └── SsoFeign.java │ │ ├── filter │ │ └── AccessFilter.java │ │ └── util │ │ └── RateLimiter.java └── resources │ ├── application.properties │ └── zuul_route.sql └── test └── java └── cn └── huanzi └── qch └── zuul └── zuulserver └── ZuulServerApplicationTests.java /.txlcn/service-a-10081.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/.txlcn/service-a-10081.mv.db -------------------------------------------------------------------------------- /.txlcn/service-b-10082.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/.txlcn/service-b-10082.mv.db -------------------------------------------------------------------------------- /.txlcn/service-b-10083.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/.txlcn/service-b-10083.mv.db -------------------------------------------------------------------------------- /.txlcn/service-c-10084.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/.txlcn/service-c-10084.mv.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/README.md -------------------------------------------------------------------------------- /config-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/pom.xml -------------------------------------------------------------------------------- /config-server/src/main/java/cn/huanzi/qch/config/configserver/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/src/main/java/cn/huanzi/qch/config/configserver/ConfigServerApplication.java -------------------------------------------------------------------------------- /config-server/src/main/java/cn/huanzi/qch/config/configserver/MyPropertiesHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/src/main/java/cn/huanzi/qch/config/configserver/MyPropertiesHandler.java -------------------------------------------------------------------------------- /config-server/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /config-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /config-server/src/test/java/cn/huanzi/qch/config/configserver/ConfigServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/config-server/src/test/java/cn/huanzi/qch/config/configserver/ConfigServerApplicationTests.java -------------------------------------------------------------------------------- /eureka-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/eureka-server/pom.xml -------------------------------------------------------------------------------- /eureka-server/src/main/java/cn/huanzi/qch/eureka/eurekaserver/EurekaServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/eureka-server/src/main/java/cn/huanzi/qch/eureka/eurekaserver/EurekaServerApplication.java -------------------------------------------------------------------------------- /eureka-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/eureka-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /eureka-server/src/test/java/cn/huanzi/qch/eureka/eurekaserver/EurekaServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/eureka-server/src/test/java/cn/huanzi/qch/eureka/eurekaserver/EurekaServerApplicationTests.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/pom.xml -------------------------------------------------------------------------------- /service-a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/pom.xml -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/MyEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/MyEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/ServiceAApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/ServiceAApplication.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/controller/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/controller/TestController.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/feign/BFeign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/feign/BFeign.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/feign/CFeign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/feign/CFeign.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/pojo/TbDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/pojo/TbDescription.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/pojo/TbUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/pojo/TbUser.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/service/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/service/TestService.java -------------------------------------------------------------------------------- /service-a/src/main/java/cn/huanzi/qch/servicea/service/TestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/java/cn/huanzi/qch/servicea/service/TestServiceImpl.java -------------------------------------------------------------------------------- /service-a/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /service-a/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/application.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/config.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/datasource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/datasource.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/eureka.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/eureka.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/feign.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/feign.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/tx-lcn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/tx-lcn.properties -------------------------------------------------------------------------------- /service-a/src/main/resources/zipkin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/main/resources/zipkin.properties -------------------------------------------------------------------------------- /service-a/src/test/java/cn/huanzi/qch/servicea/ServiceAApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-a/src/test/java/cn/huanzi/qch/servicea/ServiceAApplicationTests.java -------------------------------------------------------------------------------- /service-b1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/pom.xml -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/MyEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/MyEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/ServiceB1Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/ServiceB1Application.java -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/controller/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/controller/TestController.java -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/pojo/TbDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/pojo/TbDescription.java -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/service/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/service/TestService.java -------------------------------------------------------------------------------- /service-b1/src/main/java/cn/huanzi/qch/serviceb1/service/TestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/java/cn/huanzi/qch/serviceb1/service/TestServiceImpl.java -------------------------------------------------------------------------------- /service-b1/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /service-b1/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/application.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/config.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/datasource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/datasource.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/eureka.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/eureka.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/feign.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/feign.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/tx-lcn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/tx-lcn.properties -------------------------------------------------------------------------------- /service-b1/src/main/resources/zipkin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/main/resources/zipkin.properties -------------------------------------------------------------------------------- /service-b1/src/test/java/cn/huanzi/qch/serviceb1/ServiceB1ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b1/src/test/java/cn/huanzi/qch/serviceb1/ServiceB1ApplicationTests.java -------------------------------------------------------------------------------- /service-b2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/pom.xml -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/MyEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/MyEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/ServiceB2Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/ServiceB2Application.java -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/controller/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/controller/TestController.java -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/pojo/TbDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/pojo/TbDescription.java -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/service/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/service/TestService.java -------------------------------------------------------------------------------- /service-b2/src/main/java/cn/huanzi/qch/serviceb2/service/TestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/java/cn/huanzi/qch/serviceb2/service/TestServiceImpl.java -------------------------------------------------------------------------------- /service-b2/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /service-b2/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/application.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/config.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/datasource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/datasource.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/eureka.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/eureka.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/feign.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/feign.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/tx-lcn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/tx-lcn.properties -------------------------------------------------------------------------------- /service-b2/src/main/resources/zipkin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/main/resources/zipkin.properties -------------------------------------------------------------------------------- /service-b2/src/test/java/cn/huanzi/qch/serviceb2/ServiceB2ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-b2/src/test/java/cn/huanzi/qch/serviceb2/ServiceB2ApplicationTests.java -------------------------------------------------------------------------------- /service-c/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/pom.xml -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/MyEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/MyEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/ServiceCApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/ServiceCApplication.java -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/controller/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/controller/TestController.java -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/pojo/TbDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/pojo/TbDescription.java -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/service/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/service/TestService.java -------------------------------------------------------------------------------- /service-c/src/main/java/cn/huanzi/qch/servicec/service/TestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/java/cn/huanzi/qch/servicec/service/TestServiceImpl.java -------------------------------------------------------------------------------- /service-c/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /service-c/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/application.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/config.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/datasource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/datasource.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/eureka.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/eureka.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/feign.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/feign.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/tx-lcn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/tx-lcn.properties -------------------------------------------------------------------------------- /service-c/src/main/resources/zipkin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/main/resources/zipkin.properties -------------------------------------------------------------------------------- /service-c/src/test/java/cn/huanzi/qch/servicec/ServiceCApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/service-c/src/test/java/cn/huanzi/qch/servicec/ServiceCApplicationTests.java -------------------------------------------------------------------------------- /sso-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/pom.xml -------------------------------------------------------------------------------- /sso-server/src/main/java/cn/huanzi/qch/sso/ssoserver/RedisUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/src/main/java/cn/huanzi/qch/sso/ssoserver/RedisUtil.java -------------------------------------------------------------------------------- /sso-server/src/main/java/cn/huanzi/qch/sso/ssoserver/SsoServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/src/main/java/cn/huanzi/qch/sso/ssoserver/SsoServerApplication.java -------------------------------------------------------------------------------- /sso-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /sso-server/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /sso-server/src/test/java/cn/huanzi/qch/sso/ssoserver/SsoServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/sso-server/src/test/java/cn/huanzi/qch/sso/ssoserver/SsoServerApplicationTests.java -------------------------------------------------------------------------------- /txlcn-tm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/txlcn-tm/pom.xml -------------------------------------------------------------------------------- /txlcn-tm/src/main/java/cn/huanzi/qch/txlcn/tm/TxlcnTmApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/txlcn-tm/src/main/java/cn/huanzi/qch/txlcn/tm/TxlcnTmApplication.java -------------------------------------------------------------------------------- /txlcn-tm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/txlcn-tm/src/main/resources/application.properties -------------------------------------------------------------------------------- /txlcn-tm/src/main/resources/t_tx_exception.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/txlcn-tm/src/main/resources/t_tx_exception.sql -------------------------------------------------------------------------------- /txlcn-tm/src/test/java/cn/huanzi/qch/txlcn/tm/TxlcnTmApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/txlcn-tm/src/test/java/cn/huanzi/qch/txlcn/tm/TxlcnTmApplicationTests.java -------------------------------------------------------------------------------- /zipkin-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zipkin-server/pom.xml -------------------------------------------------------------------------------- /zipkin-server/src/main/java/cn/huanzi/qch/zipkin/zipkinserver/ZipkinServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zipkin-server/src/main/java/cn/huanzi/qch/zipkin/zipkinserver/ZipkinServerApplication.java -------------------------------------------------------------------------------- /zipkin-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zipkin-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /zuul-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/pom.xml -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/ZuulServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/ZuulServerApplication.java -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/config/ZuulRouteLocator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/config/ZuulRouteLocator.java -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/controller/ZuulRouteController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/controller/ZuulRouteController.java -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/feign/SsoFeign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/feign/SsoFeign.java -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/filter/AccessFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/filter/AccessFilter.java -------------------------------------------------------------------------------- /zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/util/RateLimiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/java/cn/huanzi/qch/zuul/zuulserver/util/RateLimiter.java -------------------------------------------------------------------------------- /zuul-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /zuul-server/src/main/resources/zuul_route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/main/resources/zuul_route.sql -------------------------------------------------------------------------------- /zuul-server/src/test/java/cn/huanzi/qch/zuul/zuulserver/ZuulServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanzi-qch/springCloud/HEAD/zuul-server/src/test/java/cn/huanzi/qch/zuul/zuulserver/ZuulServerApplicationTests.java --------------------------------------------------------------------------------