在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → springcloud完整项目

springcloud完整项目

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.05M
  • 下载次数:9
  • 浏览次数:373
  • 发布时间:2021-11-10
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
项目基于springboot2.x+springcloud Finchley,集成tkMapper、LCN分布式服务,亲测有效,不懂的发送邮箱到lidong4516@126.com
【实例截图】
【核心代码】
4744302543286694498.zip
└── clouddo_workspace
├── clouddo
│   ├── clouddo-app
│   │   ├── clouddo-app.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── xsw
│   │   │   │   │   └── clouddoapp
│   │   │   │   │   ├── ClouddoAppApplication.java
│   │   │   │   │   ├── config
│   │   │   │   │   │   └── AuthConfig.java
│   │   │   │   │   ├── controller
│   │   │   │   │   │   ├── BaseController.java
│   │   │   │   │   │   └── RoleController.java
│   │   │   │   │   ├── dao
│   │   │   │   │   │   └── RoleDao.java
│   │   │   │   │   ├── service
│   │   │   │   │   │   └── RoleService.java
│   │   │   │   │   ├── serviceImpl
│   │   │   │   │   │   └── RoleServiceImpl.java
│   │   │   │   │   └── utils
│   │   │   │   │   └── AES
│   │   │   │   │   ├── Random
│   │   │   │   │   │   └── RandomUtil.java
│   │   │   │   │   └── RES
│   │   │   │   │   └── AESOperator.java
│   │   │   │   └── resources
│   │   │   │   ├── application-dev.yml
│   │   │   │   ├── application.yml
│   │   │   │   └── static
│   │   │   │   └── js
│   │   │   │   └── AES.bundle.js
│   │   │   └── test
│   │   └── target
│   │   ├── classes
│   │   │   ├── application-dev.yml
│   │   │   └── application.yml
│   │   └── generated-sources
│   │   └── annotations
│   ├── clouddo-base
│   │   ├── clouddo-base.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── xsw
│   │   │   │   │   └── clouddobase
│   │   │   │   │   ├── ClouddoBaseApplication.java
│   │   │   │   │   ├── controller
│   │   │   │   │   ├── dao
│   │   │   │   │   └── service
│   │   │   │   │   └── impl
│   │   │   │   └── resources
│   │   │   │   ├── application.yml
│   │   │   │   ├── mapper
│   │   │   │   └── mybatis
│   │   │   └── test
│   │   │   └── java
│   │   │   └── com
│   │   │   └── xsw
│   │   │   └── clouddobase
│   │   │   └── ClouddoLogApplicationTests.java
│   │   └── target
│   │   ├── classes
│   │   │   ├── application.yml
│   │   │   └── com
│   │   │   └── xsw
│   │   │   └── clouddobase
│   │   │   └── ClouddoBaseApplication.class
│   │   ├── generated-sources
│   │   │   └── annotations
│   │   ├── generated-test-sources
│   │   │   └── test-annotations
│   │   └── test-classes
│   │   └── com
│   │   └── xsw
│   │   └── clouddobase
│   │   └── ClouddoLogApplicationTests.class
│   ├── clouddo-common
│   │   ├── clouddo-common.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   └── java
│   │   │   │   └── com
│   │   │   │   └── xsw
│   │   │   │   └── clouddocommon
│   │   │   │   ├── annotation
│   │   │   │   │   └── Log.java
│   │   │   │   ├── aspect
│   │   │   │   │   └── WebLogAspect.java
│   │   │   │   ├── base
│   │   │   │   │   ├── BaseDao.java
│   │   │   │   │   ├── BaseEntity.java
│   │   │   │   │   ├── BaseMapper.java
│   │   │   │   │   ├── BasePage.java
│   │   │   │   │   ├── BaseServiceImpl.java
│   │   │   │   │   ├── BaseService.java
│   │   │   │   │   └── SimpleEntity.java
│   │   │   │   ├── config
│   │   │   │   │   ├── AsyncConfig.java
│   │   │   │   │   └── RedisConfig.java
│   │   │   │   ├── constants
│   │   │   │   │   └── Constants.java
│   │   │   │   ├── context
│   │   │   │   │   └── FilterContextHandler.java
│   │   │   │   ├── entity
│   │   │   │   │   ├── BTree.java
│   │   │   │   │   ├── Role.java
│   │   │   │   │   └── UserToken.java
│   │   │   │   ├── enums
│   │   │   │   │   └── Enums.java
│   │   │   │   ├── exception
│   │   │   │   │   ├── CommonExceptionHandler.java
│   │   │   │   │   └── CustomException.java
│   │   │   │   ├── filter
│   │   │   │   │   └── ContextFilter.java
│   │   │   │   ├── intercepter
│   │   │   │   │   ├── AuthIntercepter.java
│   │   │   │   │   └── FeignIntercepter.java
│   │   │   │   ├── service
│   │   │   │   ├── tx
│   │   │   │   │   ├── TxManagerHttpRequestServiceImpl.java
│   │   │   │   │   └── TxManagerTxUrlServiceImpl.java
│   │   │   │   └── utils
│   │   │   │   ├── DateUtils.java
│   │   │   │   ├── FileUtils.java
│   │   │   │   ├── HttpContextUtils.java
│   │   │   │   ├── HttpServletUtils.java
│   │   │   │   ├── IPUtils.java
│   │   │   │   ├── JSONUtils.java
│   │   │   │   ├── JwtUtils.java
│   │   │   │   ├── PageUtils.java
│   │   │   │   ├── Query.java
│   │   │   │   ├── RedisUtil.java
│   │   │   │   ├── Ret.java
│   │   │   │   └── StringUtils.java
│   │   │   └── test
│   │   └── target
│   │   ├── classes
│   │   │   └── com
│   │   │   └── xsw
│   │   │   └── clouddocommon
│   │   │   ├── annotation
│   │   │   │   └── Log.class
│   │   │   ├── aspect
│   │   │   │   └── WebLogAspect.class
│   │   │   ├── base
│   │   │   │   ├── BaseDao.class
│   │   │   │   ├── BaseEntity.class
│   │   │   │   ├── BaseMapper.class
│   │   │   │   ├── BasePage.class
│   │   │   │   ├── BaseService.class
│   │   │   │   ├── BaseServiceImpl.class
│   │   │   │   └── SimpleEntity.class
│   │   │   ├── config
│   │   │   │   ├── AsyncConfig.class
│   │   │   │   └── RedisConfig.class
│   │   │   ├── constants
│   │   │   │   └── Constants.class
│   │   │   ├── context
│   │   │   │   └── FilterContextHandler.class
│   │   │   ├── entity
│   │   │   │   ├── BTree.class
│   │   │   │   ├── Role$RoleBuilder.class
│   │   │   │   ├── Role.class
│   │   │   │   ├── UserToken$UserTokenBuilder.class
│   │   │   │   └── UserToken.class
│   │   │   ├── enums
│   │   │   │   └── Enums.class
│   │   │   ├── exception
│   │   │   │   ├── CommonExceptionHandler.class
│   │   │   │   └── CustomException.class
│   │   │   ├── intercepter
│   │   │   │   ├── AuthIntercepter.class
│   │   │   │   └── FeignIntercepter.class
│   │   │   ├── tx
│   │   │   │   ├── TxManagerHttpRequestServiceImpl.class
│   │   │   │   └── TxManagerTxUrlServiceImpl.class
│   │   │   └── utils
│   │   │   ├── DateUtils.class
│   │   │   ├── FileUtils.class
│   │   │   ├── HttpContextUtils.class
│   │   │   ├── HttpServletUtils.class
│   │   │   ├── IPUtils.class
│   │   │   ├── JSONUtils.class
│   │   │   ├── JwtUtils.class
│   │   │   ├── PageUtils.class
│   │   │   ├── Query.class
│   │   │   ├── RedisUtil.class
│   │   │   ├── Ret$RetBuilder.class
│   │   │   ├── Ret.class
│   │   │   └── StringUtils.class
│   │   └── generated-sources
│   │   └── annotations
│   ├── clouddo.iml
│   ├── clouddo-server
│   │   ├── clouddo-server.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── xsw
│   │   │   │   │   └── clouddoserver
│   │   │   │   │   └── ClouddoServerApplication.java
│   │   │   │   └── resources
│   │   │   │   └── application.yml
│   │   │   └── test
│   │   └── target
│   │   ├── classes
│   │   │   ├── application.yml
│   │   │   └── com
│   │   │   └── xsw
│   │   │   └── clouddoserver
│   │   │   └── ClouddoServerApplication.class
│   │   └── generated-sources
│   │   └── annotations
│   ├── clouddo-tx
│   │   ├── clouddotx.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── codingapi
│   │   │   │   │   └── tm
│   │   │   │   │   ├── api
│   │   │   │   │   │   ├── controller
│   │   │   │   │   │   │   ├── AdminController.java
│   │   │   │   │   │   │   └── TxManagerController.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── ApiAdminService.java
│   │   │   │   │   │   ├── ApiModelService.java
│   │   │   │   │   │   ├── ApiTxManagerService.java
│   │   │   │   │   │   └── impl
│   │   │   │   │   │   ├── ApiAdminServiceImpl.java
│   │   │   │   │   │   ├── ApiModelServiceImpl.java
│   │   │   │   │   │   └── ApiTxManagerServiceImpl.java
│   │   │   │   │   ├── compensate
│   │   │   │   │   │   ├── dao
│   │   │   │   │   │   │   ├── CompensateDao.java
│   │   │   │   │   │   │   └── impl
│   │   │   │   │   │   │   └── CompensateDaoImpl.java
│   │   │   │   │   │   ├── model
│   │   │   │   │   │   │   ├── TransactionCompensateMsg.java
│   │   │   │   │   │   │   └── TxModel.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── CompensateService.java
│   │   │   │   │   │   └── impl
│   │   │   │   │   │   └── CompensateServiceImpl.java
│   │   │   │   │   ├── config
│   │   │   │   │   │   └── ConfigReader.java
│   │   │   │   │   ├── Constants.java
│   │   │   │   │   ├── CorsConfig.java
│   │   │   │   │   ├── framework
│   │   │   │   │   │   └── utils
│   │   │   │   │   │   ├── SocketManager.java
│   │   │   │   │   │   └── SocketUtils.java
│   │   │   │   │   ├── listener
│   │   │   │   │   │   ├── ApplicationStartListener.java
│   │   │   │   │   │   ├── ServerListener.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   └── InitServiceImpl.java
│   │   │   │   │   │   └── InitService.java
│   │   │   │   │   ├── manager
│   │   │   │   │   │   ├── ModelInfoManager.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   ├── LoadBalanceServiceImpl.java
│   │   │   │   │   │   │   ├── MicroServiceImpl.java
│   │   │   │   │   │   │   ├── TxManagerSenderServiceImpl.java
│   │   │   │   │   │   │   └── TxManagerServiceImpl.java
│   │   │   │   │   │   ├── LoadBalanceService.java
│   │   │   │   │   │   ├── MicroService.java
│   │   │   │   │   │   ├── TxManagerSenderService.java
│   │   │   │   │   │   └── TxManagerService.java
│   │   │   │   │   ├── model
│   │   │   │   │   │   ├── ChannelSender.java
│   │   │   │   │   │   ├── LoadBalanceInfo.java
│   │   │   │   │   │   ├── ModelInfo.java
│   │   │   │   │   │   ├── ModelName.java
│   │   │   │   │   │   ├── TxServer.java
│   │   │   │   │   │   └── TxState.java
│   │   │   │   │   ├── netty
│   │   │   │   │   │   ├── handler
│   │   │   │   │   │   │   └── TxCoreServerHandler.java
│   │   │   │   │   │   ├── model
│   │   │   │   │   │   │   ├── TxGroup.java
│   │   │   │   │   │   │   └── TxInfo.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── IActionService.java
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   ├── ActionATGServiceImpl.java
│   │   │   │   │   │   │   ├── ActionCGServiceImpl.java
│   │   │   │   │   │   │   ├── ActionCKGServiceImpl.java
│   │   │   │   │   │   │   ├── ActionCServiceImpl.java
│   │   │   │   │   │   │   ├── ActionCTGServiceImpl.java
│   │   │   │   │   │   │   ├── ActionGLBServiceImpl.java
│   │   │   │   │   │   │   ├── ActionHServiceImpl.java
│   │   │   │   │   │   │   ├── ActionPLBServiceImpl.java
│   │   │   │   │   │   │   ├── ActionRGServiceImpl.java
│   │   │   │   │   │   │   ├── ActionTServiceImpl.java
│   │   │   │   │   │   │   ├── ActionUMIServiceImpl.java
│   │   │   │   │   │   │   ├── BaseSignalTaskService.java
│   │   │   │   │   │   │   ├── NettyServerServiceImpl.java
│   │   │   │   │   │   │   └── NettyServiceImpl.java
│   │   │   │   │   │   ├── NettyServerService.java
│   │   │   │   │   │   └── NettyService.java
│   │   │   │   │   ├── redis
│   │   │   │   │   │   ├── JedisClusterConfig.java
│   │   │   │   │   │   ├── RedisConfig.java
│   │   │   │   │   │   ├── RedisProperties.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   └── RedisServerServiceImpl.java
│   │   │   │   │   │   └── RedisServerService.java
│   │   │   │   │   ├── RestConfig.java
│   │   │   │   │   ├── ServletInitializer.java
│   │   │   │   │   └── TxManagerApplication.java
│   │   │   │   └── resources
│   │   │   │   ├── application.properties
│   │   │   │   ├── banner.txt
│   │   │   │   └── static
│   │   │   │   ├── index.html
│   │   │   │   ├── log.html
│   │   │   │   ├── model.html
│   │   │   │   └── static
│   │   │   │   ├── bootstrap
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   │   │   ├── bootstrap-theme.min.css
│   │   │   │   │   │   └── bootstrap-theme.min.css.map
│   │   │   │   │   ├── fonts
│   │   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   │   └── js
│   │   │   │   │   ├── bootstrap.js
│   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   └── npm.js
│   │   │   │   ├── common
│   │   │   │   │   ├── common.js
│   │   │   │   │   ├── http.js
│   │   │   │   │   └── jbase64.js
│   │   │   │   ├── images
│   │   │   │   │   └── logo.png
│   │   │   │   ├── index.js
│   │   │   │   ├── jquery
│   │   │   │   │   ├── jquery-2.2.3.min.js
│   │   │   │   │   ├── jquery.blockUI-css.js
│   │   │   │   │   ├── jquery.blockUI.min.js
│   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   └── jquery.min.js
│   │   │   │   ├── log.js
│   │   │   │   └── model.js
│   │   │   └── test
│   │   │   └── java
│   │   └── target
│   │   ├── classes
│   │   │   ├── application.properties
│   │   │   ├── banner.txt
│   │   │   ├── com
│   │   │   │   └── codingapi
│   │   │   │   └── tm
│   │   │   │   ├── api
│   │   │   │   │   ├── controller
│   │   │   │   │   │   ├── AdminController.class
│   │   │   │   │   │   └── TxManagerController.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── ApiAdminService.class
│   │   │   │   │   ├── ApiModelService.class
│   │   │   │   │   ├── ApiTxManagerService.class
│   │   │   │   │   └── impl
│   │   │   │   │   ├── ApiAdminServiceImpl.class
│   │   │   │   │   ├── ApiModelServiceImpl.class
│   │   │   │   │   └── ApiTxManagerServiceImpl.class
│   │   │   │   ├── compensate
│   │   │   │   │   ├── dao
│   │   │   │   │   │   ├── CompensateDao.class
│   │   │   │   │   │   └── impl
│   │   │   │   │   │   └── CompensateDaoImpl.class
│   │   │   │   │   ├── model
│   │   │   │   │   │   ├── TransactionCompensateMsg.class
│   │   │   │   │   │   └── TxModel.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── CompensateService.class
│   │   │   │   │   └── impl
│   │   │   │   │   ├── CompensateServiceImpl$1.class
│   │   │   │   │   ├── CompensateServiceImpl$2.class
│   │   │   │   │   └── CompensateServiceImpl.class
│   │   │   │   ├── config
│   │   │   │   │   └── ConfigReader.class
│   │   │   │   ├── Constants.class
│   │   │   │   ├── CorsConfig.class
│   │   │   │   ├── framework
│   │   │   │   │   └── utils
│   │   │   │   │   ├── SocketManager.class
│   │   │   │   │   └── SocketUtils.class
│   │   │   │   ├── listener
│   │   │   │   │   ├── ApplicationStartListener.class
│   │   │   │   │   ├── ServerListener.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── InitServiceImpl.class
│   │   │   │   │   └── InitService.class
│   │   │   │   ├── manager
│   │   │   │   │   ├── ModelInfoManager.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── LoadBalanceServiceImpl.class
│   │   │   │   │   │   ├── MicroServiceImpl.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$1.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$2.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$3$1.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$3.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$4$1.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl$4.class
│   │   │   │   │   │   ├── TxManagerSenderServiceImpl.class
│   │   │   │   │   │   └── TxManagerServiceImpl.class
│   │   │   │   │   ├── LoadBalanceService.class
│   │   │   │   │   ├── MicroService.class
│   │   │   │   │   ├── TxManagerSenderService.class
│   │   │   │   │   └── TxManagerService.class
│   │   │   │   ├── model
│   │   │   │   │   ├── ChannelSender$1.class
│   │   │   │   │   ├── ChannelSender$2.class
│   │   │   │   │   ├── ChannelSender.class
│   │   │   │   │   ├── LoadBalanceInfo.class
│   │   │   │   │   ├── ModelInfo.class
│   │   │   │   │   ├── ModelName.class
│   │   │   │   │   ├── TxServer.class
│   │   │   │   │   └── TxState.class
│   │   │   │   ├── netty
│   │   │   │   │   ├── handler
│   │   │   │   │   │   ├── TxCoreServerHandler$1.class
│   │   │   │   │   │   └── TxCoreServerHandler.class
│   │   │   │   │   ├── model
│   │   │   │   │   │   ├── TxGroup.class
│   │   │   │   │   │   └── TxInfo.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IActionService.class
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── ActionATGServiceImpl.class
│   │   │   │   │   │   ├── ActionCGServiceImpl.class
│   │   │   │   │   │   ├── ActionCKGServiceImpl.class
│   │   │   │   │   │   ├── ActionCServiceImpl.class
│   │   │   │   │   │   ├── ActionCTGServiceImpl.class
│   │   │   │   │   │   ├── ActionGLBServiceImpl.class
│   │   │   │   │   │   ├── ActionHServiceImpl.class
│   │   │   │   │   │   ├── ActionPLBServiceImpl.class
│   │   │   │   │   │   ├── ActionRGServiceImpl.class
│   │   │   │   │   │   ├── ActionTServiceImpl.class
│   │   │   │   │   │   ├── ActionUMIServiceImpl.class
│   │   │   │   │   │   ├── BaseSignalTaskService$1.class
│   │   │   │   │   │   ├── BaseSignalTaskService.class
│   │   │   │   │   │   ├── NettyServerServiceImpl$1.class
│   │   │   │   │   │   ├── NettyServerServiceImpl.class
│   │   │   │   │   │   └── NettyServiceImpl.class
│   │   │   │   │   ├── NettyServerService.class
│   │   │   │   │   └── NettyService.class
│   │   │   │   ├── redis
│   │   │   │   │   ├── JedisClusterConfig.class
│   │   │   │   │   ├── RedisConfig.class
│   │   │   │   │   ├── RedisProperties.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── RedisServerServiceImpl.class
│   │   │   │   │   └── RedisServerService.class
│   │   │   │   ├── RestConfig.class
│   │   │   │   ├── ServletInitializer.class
│   │   │   │   └── TxManagerApplication.class
│   │   │   └── static
│   │   │   ├── index.html
│   │   │   ├── log.html
│   │   │   ├── model.html
│   │   │   └── static
│   │   │   ├── bootstrap
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   │   ├── bootstrap-theme.min.css
│   │   │   │   │   └── bootstrap-theme.min.css.map
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   └── js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   └── npm.js
│   │   │   ├── common
│   │   │   │   ├── common.js
│   │   │   │   ├── http.js
│   │   │   │   └── jbase64.js
│   │   │   ├── images
│   │   │   │   └── logo.png
│   │   │   ├── index.js
│   │   │   ├── jquery
│   │   │   │   ├── jquery-2.2.3.min.js
│   │   │   │   ├── jquery.blockUI-css.js
│   │   │   │   ├── jquery.blockUI.min.js
│   │   │   │   ├── jquery.form.js
│   │   │   │   └── jquery.min.js
│   │   │   ├── log.js
│   │   │   └── model.js
│   │   └── generated-sources
│   │   └── annotations
│   ├── clouddo-zuul
│   │   ├── clouddo-zuul.iml
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── xsw
│   │   │   │   │   └── clouddozuul
│   │   │   │   │   ├── ClouddoZuulApplication.java
│   │   │   │   │   ├── config
│   │   │   │   │   ├── controller
│   │   │   │   │   │   └── LoginController.java
│   │   │   │   │   ├── filter
│   │   │   │   │   │   └── AccessFilter.java
│   │   │   │   │   ├── prc
│   │   │   │   │   │   └── admin
│   │   │   │   │   │   └── RoleFeignService.java
│   │   │   │   │   └── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── RoleServiceImpl.java
│   │   │   │   │   └── RoleService.java
│   │   │   │   └── resources
│   │   │   │   └── application.yml
│   │   │   └── test
│   │   └── target
│   │   ├── classes
│   │   │   ├── application.yml
│   │   │   └── com
│   │   │   └── xsw
│   │   │   └── clouddozuul
│   │   │   ├── ClouddoZuulApplication.class
│   │   │   ├── controller
│   │   │   │   └── LoginController.class
│   │   │   ├── filter
│   │   │   │   └── AccessFilter.class
│   │   │   ├── prc
│   │   │   │   └── admin
│   │   │   │   └── RoleFeignService.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── RoleServiceImpl.class
│   │   │   └── RoleService.class
│   │   └── generated-sources
│   │   └── annotations
│   ├── pom.xml
│   └── README.md
├── codingapi
│   ├── transaction-dubbo
│   │   ├── 4.2.0
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-dubbo-4.2.0.jar
│   │   │   ├── transaction-dubbo-4.2.0.pom
│   │   │   └── transaction-dubbo-4.2.0-sources.jar
│   │   ├── 4.2.0-SNAPSHOT
│   │   │   ├── maven-metadata-local.xml
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-dubbo-4.2.0-SNAPSHOT.jar
│   │   │   ├── transaction-dubbo-4.2.0-SNAPSHOT.pom
│   │   │   └── transaction-dubbo-4.2.0-SNAPSHOT-sources.jar
│   │   └── maven-metadata-local.xml
│   ├── transaction-motan
│   │   ├── 4.1.0
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-motan-4.1.0.jar
│   │   │   ├── transaction-motan-4.1.0.jar.sha1
│   │   │   ├── transaction-motan-4.1.0.pom
│   │   │   └── transaction-motan-4.1.0.pom.sha1
│   │   ├── 4.2.0
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-motan-4.2.0.jar
│   │   │   ├── transaction-motan-4.2.0.pom
│   │   │   └── transaction-motan-4.2.0-sources.jar
│   │   ├── 4.2.0-SNAPSHOT
│   │   │   ├── maven-metadata-local.xml
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-motan-4.2.0-SNAPSHOT.jar
│   │   │   ├── transaction-motan-4.2.0-SNAPSHOT.pom
│   │   │   └── transaction-motan-4.2.0-SNAPSHOT-sources.jar
│   │   └── maven-metadata-local.xml
│   ├── transaction-springcloud
│   │   ├── ${lcn.last.version}
│   │   │   ├── transaction-springcloud-${lcn.last.version}.jar.lastUpdated
│   │   │   └── transaction-springcloud-${lcn.last.version}.pom.lastUpdated
│   │   ├── 4.1.0
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-springcloud-4.1.0.jar
│   │   │   ├── transaction-springcloud-4.1.0.jar.sha1
│   │   │   ├── transaction-springcloud-4.1.0.pom
│   │   │   └── transaction-springcloud-4.1.0.pom.sha1
│   │   ├── 4.2.0
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-springcloud-4.2.0.jar
│   │   │   ├── transaction-springcloud-4.2.0.pom
│   │   │   └── transaction-springcloud-4.2.0-sources.jar
│   │   ├── 4.2.0-SNAPSHOT
│   │   │   ├── maven-metadata-local.xml
│   │   │   ├── _remote.repositories
│   │   │   ├── transaction-springcloud-4.2.0-SNAPSHOT.jar
│   │   │   ├── transaction-springcloud-4.2.0-SNAPSHOT.pom
│   │   │   └── transaction-springcloud-4.2.0-SNAPSHOT-sources.jar
│   │   ├── maven-metadata-local.xml
│   │   ├── maven-metadata-nexus.xml
│   │   ├── maven-metadata-nexus.xml.sha1
│   │   └── resolver-status.properties
│   ├── tx-client
│   │   ├── 4.1.0
│   │   │   ├── _remote.repositories
│   │   │   ├── tx-client-4.1.0.jar
│   │   │   ├── tx-client-4.1.0.jar.sha1
│   │   │   ├── tx-client-4.1.0.pom
│   │   │   └── tx-client-4.1.0.pom.sha1
│   │   ├── 4.2.0
│   │   │   ├── _remote.repositories
│   │   │   ├── tx-client-4.2.0.jar
│   │   │   ├── tx-client-4.2.0.jar.lastUpdated
│   │   │   ├── tx-client-4.2.0.pom
│   │   │   ├── tx-client-4.2.0.pom.lastUpdated
│   │   │   └── tx-client-4.2.0-sources.jar
│   │   ├── 4.2.0-SNAPSHOT
│   │   │   ├── maven-metadata-local.xml
│   │   │   ├── _remote.repositories
│   │   │   ├── tx-client-4.2.0-SNAPSHOT.jar
│   │   │   ├── tx-client-4.2.0-SNAPSHOT.pom
│   │   │   └── tx-client-4.2.0-SNAPSHOT-sources.jar
│   │   └── maven-metadata-local.xml
│   ├── tx-lcn
│   │   ├── 4.1.0
│   │   │   ├── _remote.repositories
│   │   │   ├── tx-lcn-4.1.0.pom
│   │   │   └── tx-lcn-4.1.0.pom.sha1
│   │   ├── 4.2.0
│   │   │   ├── _remote.repositories
│   │   │   └── tx-lcn-4.2.0.pom
│   │   ├── 4.2.0-SNAPSHOT
│   │   │   ├── maven-metadata-local.xml
│   │   │   ├── _remote.repositories
│   │   │   └── tx-lcn-4.2.0-SNAPSHOT.pom
│   │   └── maven-metadata-local.xml
│   └── tx-plugins-db
│   ├── ${lcn.last.version
│   │   ├── tx-plugins-db-${lcn.last.version.jar.lastUpdated
│   │   └── tx-plugins-db-${lcn.last.version.pom.lastUpdated
│   ├── ${lcn.last.version}
│   │   ├── tx-plugins-db-${lcn.last.version}.jar.lastUpdated
│   │   └── tx-plugins-db-${lcn.last.version}.pom.lastUpdated
│   ├── 4.1.0
│   │   ├── _remote.repositories
│   │   ├── tx-plugins-db-4.1.0.jar
│   │   ├── tx-plugins-db-4.1.0.jar.sha1
│   │   ├── tx-plugins-db-4.1.0.pom
│   │   └── tx-plugins-db-4.1.0.pom.sha1
│   ├── 4.2.0
│   │   ├── _remote.repositories
│   │   ├── tx-plugins-db-4.2.0.jar
│   │   ├── tx-plugins-db-4.2.0.pom
│   │   └── tx-plugins-db-4.2.0-sources.jar
│   ├── 4.2.0-SNAPSHOT
│   │   ├── maven-metadata-local.xml
│   │   ├── _remote.repositories
│   │   ├── tx-plugins-db-4.2.0-SNAPSHOT.jar
│   │   ├── tx-plugins-db-4.2.0-SNAPSHOT.pom
│   │   └── tx-plugins-db-4.2.0-SNAPSHOT-sources.jar
│   ├── maven-metadata-local.xml
│   ├── maven-metadata-nexus.xml
│   ├── maven-metadata-nexus.xml.sha1
│   └── resolver-status.properties
├── springcloud.sql
└── 启动须知.txt

262 directories, 433 files

标签:

实例下载地址

springcloud完整项目

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警