├── .babelrc ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets └── spring-boot-reference.pdf ├── codes ├── core │ ├── README.md │ ├── pom.xml │ ├── spring-boot-actuator │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootActuatorApplication.java │ │ │ │ │ └── WelcomeController.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── templates │ │ │ │ ├── error.ftl │ │ │ │ └── home.ftl │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── SpringBootActuatorApplicationPortTests.java │ │ │ └── SpringBootActuatorApplicationTests.java │ ├── spring-boot-aop │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootAopApplication.java │ │ │ │ │ ├── aop │ │ │ │ │ ├── LogRecord.java │ │ │ │ │ ├── LogRecordDao.java │ │ │ │ │ ├── LogRecordDaoImpl.java │ │ │ │ │ ├── MethodLog.java │ │ │ │ │ └── MethodLogAspect.java │ │ │ │ │ ├── monitor │ │ │ │ │ └── ServiceAspect.java │ │ │ │ │ └── service │ │ │ │ │ └── WelcomeService.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootAopApplicationTests.java │ ├── spring-boot-async │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── AppRunner.java │ │ │ │ ├── SpringBootAsyncApplication.java │ │ │ │ └── service │ │ │ │ ├── GitHubLookupService.java │ │ │ │ └── User.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ ├── spring-boot-banner │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── SpringBootBannerApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── banner.txt │ ├── spring-boot-bean │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── BeanUtil.java │ │ │ │ │ ├── SpringBootBeanApplication.java │ │ │ │ │ └── bean │ │ │ │ │ ├── Company.java │ │ │ │ │ ├── InfoDTO.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── UserDO.java │ │ │ │ │ └── UserDTO.java │ │ │ └── resources │ │ │ │ ├── banner.txt │ │ │ │ ├── dozer-mapping.xml │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootBeanApplicationTests.java │ ├── spring-boot-profile │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootProfileApplication.java │ │ │ │ │ └── service │ │ │ │ │ ├── MessageService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── DevMessageServiceImpl.java │ │ │ │ │ ├── ProdMessageServiceImpl.java │ │ │ │ │ └── TestMessageServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-prod.properties │ │ │ │ ├── application-test.properties │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootProfileApplicationTests.java │ └── spring-boot-property │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootPropertyApplication.java │ │ │ │ ├── annotation │ │ │ │ ├── IsMobile.java │ │ │ │ └── RegexValid.java │ │ │ │ ├── config │ │ │ │ ├── CustomConfig.java │ │ │ │ ├── DunwuProperties.java │ │ │ │ ├── DunwuRandomProperties.java │ │ │ │ ├── GenderEnum.java │ │ │ │ ├── ValidatedProperties.java │ │ │ │ └── ValidatedPropertiesValidator.java │ │ │ │ └── validator │ │ │ │ ├── MobileValidator.java │ │ │ │ └── RegexValidator.java │ │ └── resources │ │ │ ├── application-prop.properties │ │ │ ├── application-yaml.yaml │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── prop │ │ │ ├── custom.properties │ │ │ ├── random.properties │ │ │ └── validator.properties │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── SpringBootPropertyApplicationTest.java ├── data │ ├── README.md │ ├── pom.xml │ ├── spring-boot-data-cache-j2cache │ │ ├── pom.xml │ │ ├── readme.md │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataCacheJ2cacheApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── J2CacheAutoConfiguration.java │ │ │ │ │ ├── J2CacheProperties.java │ │ │ │ │ ├── J2CacheSpringCacheAutoConfiguration.java │ │ │ │ │ └── J2CacheSpringRedisAutoConfiguration.java │ │ │ │ │ └── support │ │ │ │ │ ├── J2CacheCache.java │ │ │ │ │ ├── J2CacheCacheManger.java │ │ │ │ │ ├── redis │ │ │ │ │ ├── ConfigureNotifyKeyspaceEventsAction.java │ │ │ │ │ ├── SpringRedisActiveMessageListener.java │ │ │ │ │ ├── SpringRedisCache.java │ │ │ │ │ ├── SpringRedisGenericCache.java │ │ │ │ │ ├── SpringRedisMessageListener.java │ │ │ │ │ ├── SpringRedisProvider.java │ │ │ │ │ └── SpringRedisPubSubPolicy.java │ │ │ │ │ └── util │ │ │ │ │ ├── J2CacheSerializer.java │ │ │ │ │ ├── SpringJ2CacheConfigUtil.java │ │ │ │ │ └── SpringUtil.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── spring-configuration-metadata.json │ │ │ │ └── spring.factories │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── j2cache.properties │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootDataCacheJ2cacheApplicationTests.java │ │ │ │ ├── bean │ │ │ │ └── TestBean.java │ │ │ │ └── service │ │ │ │ └── TestService.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── j2cache-test.properties │ ├── spring-boot-data-cache-jetcache │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── data │ │ │ │ ├── SpringBootDataCacheJetcacheApplication.java │ │ │ │ ├── config │ │ │ │ └── CacheAutoConfiguration.java │ │ │ │ ├── entity │ │ │ │ └── User.java │ │ │ │ └── mapper │ │ │ │ ├── UserDao.java │ │ │ │ └── UserDaoImpl.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── sql │ │ │ ├── data.sql │ │ │ └── schema.sql │ ├── spring-boot-data-cache │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── data │ │ │ │ ├── SpringBootDataCacheApplication.java │ │ │ │ ├── User.java │ │ │ │ ├── UserDao.java │ │ │ │ └── UserDaoImpl.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── sql │ │ │ ├── data.sql │ │ │ └── schema.sql │ ├── spring-boot-data-druid │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataDruidApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserDao.java │ │ │ │ │ ├── UserDaoExecutor.java │ │ │ │ │ └── UserDaoImpl.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── data.sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ └── SpringBootDataDruidApplicationTest.java │ ├── spring-boot-data-elasticsearch-jest │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootDataElasticsearchApplication.java │ │ │ │ │ └── data │ │ │ │ │ ├── constant │ │ │ │ │ ├── NamingStrategy.java │ │ │ │ │ ├── OrderType.java │ │ │ │ │ ├── QueryJudgeType.java │ │ │ │ │ └── QueryLogicType.java │ │ │ │ │ ├── elasticsearch │ │ │ │ │ ├── ElasticSearchUtil.java │ │ │ │ │ ├── QueryDocument.java │ │ │ │ │ └── QueryField.java │ │ │ │ │ ├── entities │ │ │ │ │ ├── Article.java │ │ │ │ │ ├── ArticleBuilder.java │ │ │ │ │ ├── Author.java │ │ │ │ │ ├── Book.java │ │ │ │ │ ├── Car.java │ │ │ │ │ ├── GirlFriend.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── PersonMultipleLevelNested.java │ │ │ │ │ ├── Product.java │ │ │ │ │ ├── Sector.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserQuery.java │ │ │ │ │ └── repositories │ │ │ │ │ ├── ArticleRepository.java │ │ │ │ │ ├── BookRepository.java │ │ │ │ │ ├── OperationRepository.java │ │ │ │ │ ├── ProductRepository.java │ │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ ├── entities │ │ │ ├── Contact.java │ │ │ ├── Manuscript.java │ │ │ └── Role.java │ │ │ └── repositories │ │ │ ├── ArticleRepositoryTest.java │ │ │ ├── BookRepositoryTest.java │ │ │ ├── ElasticsearchFacetTests.java │ │ │ ├── ElasticsearchPerformanceTest.java │ │ │ ├── NestedObjectTests.java │ │ │ ├── OperationRepositoryTest.java │ │ │ ├── ProductRepositoryTest.java │ │ │ └── UserRepositoryTest.java │ ├── spring-boot-data-elasticsearch │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── JestClientDemo.java │ │ │ │ │ ├── SpringBootDataElasticsearchApplication.java │ │ │ │ │ └── data │ │ │ │ │ ├── annotation │ │ │ │ │ ├── QueryDocument.java │ │ │ │ │ └── QueryField.java │ │ │ │ │ ├── constant │ │ │ │ │ ├── NamingStrategy.java │ │ │ │ │ ├── OrderType.java │ │ │ │ │ ├── QueryJudgeType.java │ │ │ │ │ └── QueryLogicType.java │ │ │ │ │ ├── entities │ │ │ │ │ ├── Article.java │ │ │ │ │ ├── ArticleBuilder.java │ │ │ │ │ ├── Author.java │ │ │ │ │ ├── Book.java │ │ │ │ │ ├── Car.java │ │ │ │ │ ├── GirlFriend.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── PersonMultipleLevelNested.java │ │ │ │ │ ├── Product.java │ │ │ │ │ ├── Sector.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserQuery.java │ │ │ │ │ ├── repositories │ │ │ │ │ ├── ArticleRepository.java │ │ │ │ │ ├── BookRepository.java │ │ │ │ │ ├── OperationRepository.java │ │ │ │ │ ├── ProductRepository.java │ │ │ │ │ └── UserRepository.java │ │ │ │ │ └── util │ │ │ │ │ ├── ElasticSearchUtil.java │ │ │ │ │ └── QueryFeildToQueryBuilderUtil.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ ├── entities │ │ │ ├── Contact.java │ │ │ ├── Manuscript.java │ │ │ └── Role.java │ │ │ └── repositories │ │ │ ├── ArticleRepositoryTest.java │ │ │ ├── BookRepositoryTest.java │ │ │ ├── ElasticsearchFacetTests.java │ │ │ ├── ElasticsearchPerformanceTest.java │ │ │ ├── NestedObjectTests.java │ │ │ ├── OperationRepositoryTest.java │ │ │ ├── ProductRepositoryTest.java │ │ │ └── UserRepositoryTest.java │ ├── spring-boot-data-flyway │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataFlywayApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserDao.java │ │ │ │ │ └── UserDaoImpl.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── V1__Create_table_user.sql │ │ │ │ └── V2__Add_user.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ └── SpringBootDataFlywayApplicationTests.java │ ├── spring-boot-data-hdfs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ ├── data │ │ │ │ └── hdfs │ │ │ │ │ ├── HdfsConfig.java │ │ │ │ │ ├── HdfsFactory.java │ │ │ │ │ ├── HdfsPool.java │ │ │ │ │ └── HdfsUtil.java │ │ │ │ └── springboot │ │ │ │ ├── HdfsConfiguration.java │ │ │ │ ├── HdfsProperties.java │ │ │ │ └── SpringBootDataHdfsApplication.java │ │ │ └── resources │ │ │ └── application.properties │ ├── spring-boot-data-jdbc-multi-datasource │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── DataSourceConfig.java │ │ │ │ │ ├── H2UserDaoImpl.java │ │ │ │ │ ├── MysqlUserDaoImpl.java │ │ │ │ │ ├── SpringBootDataJdbcMultiDataSourceApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserDao.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── data.sql │ │ │ │ ├── schema-h2.sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ ├── DataJdbcH2DataSourceTest.java │ │ │ └── DataJdbcMysqlDataSourceTest.java │ ├── spring-boot-data-jdbc │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataJdbcApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserDao.java │ │ │ │ │ ├── UserDaoExecutor.java │ │ │ │ │ └── UserDaoImpl.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── data.sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ └── SpringBootDataJdbcTest.java │ ├── spring-boot-data-jpa │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataJpaApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── data.sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootJpaRestTest.java │ │ │ │ └── SpringBootJpaTest.java │ │ │ └── resources │ │ │ ├── application-test.properties │ │ │ └── sql │ │ │ ├── data-h2.sql │ │ │ └── schema-h2.sql │ ├── spring-boot-data-mongodb │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootDataMongodbApplication.java │ │ │ │ │ └── mongodb │ │ │ │ │ ├── CustomerRepository.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── advanced │ │ │ │ │ ├── AdvancedRepository.java │ │ │ │ │ └── ApplicationConfiguration.java │ │ │ │ │ ├── customer │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ │ ├── Customer.java │ │ │ │ │ └── CustomerRepository.java │ │ │ │ │ ├── immutable │ │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ │ └── ImmutablePerson.java │ │ │ │ │ └── projections │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── CustomerDto.java │ │ │ │ │ ├── CustomerProjection.java │ │ │ │ │ ├── CustomerRepository.java │ │ │ │ │ └── CustomerSummary.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── mongodb │ │ │ │ ├── PersonRepositoryTests.java │ │ │ │ ├── advanced │ │ │ │ ├── AdvancedIntegrationTests.java │ │ │ │ ├── ServersideScriptTests.java │ │ │ │ └── package-info.java │ │ │ │ ├── customer │ │ │ │ ├── CustomerRepositoryIntegrationTest.java │ │ │ │ └── package-info.java │ │ │ │ ├── immutable │ │ │ │ └── ImmutableEntityIntegrationTest.java │ │ │ │ └── projections │ │ │ │ └── CustomerRepositoryIntegrationTest.java │ │ │ └── resources │ │ │ └── application.properties │ ├── spring-boot-data-mybatis-multi-datasource │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootDataMybatisMultiDataSourceApplication.java │ │ │ │ │ └── data │ │ │ │ │ ├── entity │ │ │ │ │ └── User.java │ │ │ │ │ └── mapper │ │ │ │ │ ├── Db1UserMapper.java │ │ │ │ │ └── Db2UserMapper.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootDataMybatisMultiDataSourceApplicationTests.java │ ├── spring-boot-data-mybatis-plus │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── data │ │ │ │ │ ├── SpringBootDataMybatisPlusApplication.java │ │ │ │ │ ├── entity │ │ │ │ │ └── User.java │ │ │ │ │ └── mapper │ │ │ │ │ └── UserMapper.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── data.sql │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── data │ │ │ │ └── SpringBootDataMybatisPlusApplicationTest.java │ │ │ └── resources │ │ │ ├── application-test.properties │ │ │ └── sql │ │ │ ├── data-h2.sql │ │ │ └── schema-h2.sql │ ├── spring-boot-data-mybatis-sharding │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootDataMybatisShardingApplication.java │ │ │ │ │ └── data │ │ │ │ │ ├── entity │ │ │ │ │ └── User.java │ │ │ │ │ └── mapper │ │ │ │ │ └── UserMapper.java │ │ │ └── resources │ │ │ │ ├── application-master-slave.properties │ │ │ │ ├── application-sharding-databases-tables.properties │ │ │ │ ├── application-sharding-databases.properties │ │ │ │ ├── application-sharding-master-slave.properties │ │ │ │ ├── application-sharding-tables.properties │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clear.sql │ │ │ │ ├── master_slave.sql │ │ │ │ ├── sharding_databases.sql │ │ │ │ ├── sharding_databases_tables.sql │ │ │ │ └── sharding_tables.sql │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── MasterSlaveTests.java │ │ │ ├── ShardingDatabasesTablesTests.java │ │ │ ├── ShardingDatabasesTests.java │ │ │ └── ShardingTablesTests.java │ ├── spring-boot-data-redis-cluster │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── CustomRedisAutoConfiguration.java │ │ │ │ ├── SpringBootDataRedisClusterApplication.java │ │ │ │ └── data │ │ │ │ ├── User.java │ │ │ │ ├── UserService.java │ │ │ │ └── UserServiceImpl.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ ├── spring-boot-data-redis │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── RedisAutoConfiguration.java │ │ │ │ ├── SpringBootDataRedisApplication.java │ │ │ │ └── data │ │ │ │ ├── User.java │ │ │ │ ├── UserService.java │ │ │ │ └── UserServiceImpl.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ └── spring-boot-data-tx │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── data │ │ │ ├── SpringTxFailedApplication.java │ │ │ ├── UserEntity.java │ │ │ ├── UserRepository.java │ │ │ ├── propagation │ │ │ ├── SubUserService.java │ │ │ ├── TransactionPropagationController.java │ │ │ └── UserService.java │ │ │ ├── proxyfailed │ │ │ ├── TransactionProxyFailedController.java │ │ │ └── UserService.java │ │ │ └── rollbackfailed │ │ │ ├── TransactionRollbackFailedController.java │ │ │ └── UserService.java │ │ └── resources │ │ ├── application.properties │ │ ├── applicationContext.xml │ │ ├── data │ │ ├── spring-druid.xml │ │ ├── spring-h2.xml │ │ └── spring-mysql.xml │ │ ├── logback.xml │ │ ├── news.csv │ │ ├── properties │ │ ├── h2.properties │ │ └── mysql.properties │ │ ├── sql │ │ ├── h2 │ │ │ └── ddl.sql │ │ └── mysql │ │ │ └── ddl.sql │ │ └── templates │ │ ├── index.html │ │ └── xss.html ├── distributed │ ├── spring-boot-dubbo │ │ ├── README.md │ │ ├── pom.xml │ │ ├── spring-boot-dubbo-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── dubbo │ │ │ │ └── api │ │ │ │ ├── DemoService.java │ │ │ │ ├── InfoDto.java │ │ │ │ └── InfoService.java │ │ ├── spring-boot-dubbo-autoconfig-consumer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── dubbo │ │ │ │ │ └── consumer │ │ │ │ │ └── DubboAutoConfigurationConsumerBootstrap.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── spring-boot-dubbo-autoconfig-provider │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── dubbo │ │ │ │ │ └── provider │ │ │ │ │ ├── bootstrap │ │ │ │ │ └── DubboAutoConfigurationProviderBootstrap.java │ │ │ │ │ └── service │ │ │ │ │ └── DefaultDemoService.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── spring-boot-dubbo-zookeeper-consumer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ └── dubbo │ │ │ │ │ └── consumer │ │ │ │ │ └── DubboRegistryZooKeeperConsumerBootstrap.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── spring-boot-dubbo-zookeeper-provider │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── dubbo │ │ │ │ └── provider │ │ │ │ ├── bootstrap │ │ │ │ ├── DubboRegistryZooKeeperProviderBootstrap.java │ │ │ │ └── EmbeddedZooKeeper.java │ │ │ │ └── service │ │ │ │ └── DefaultDemoService.java │ │ │ └── resources │ │ │ └── application.properties │ └── spring-boot-zookeeper │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── SpringBootZooKeeperApplication.java │ │ │ └── ZooKeeperTemplate.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ └── logback.xml ├── integration │ ├── spring-boot-docker │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── boot.sh │ │ ├── docker-entrypoint.sh │ │ ├── env.sh │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── SpringBootDockerApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ ├── spring-boot-logging │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootLoggingApplication.java │ │ │ │ │ ├── aspect │ │ │ │ │ └── WebLogAspect.java │ │ │ │ │ └── web │ │ │ │ │ └── HelloController.java │ │ │ └── resources │ │ │ │ ├── application-log4j.properties │ │ │ │ ├── application-log4j2.properties │ │ │ │ ├── application-logback.properties │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── log4j.xml │ │ │ │ ├── log4j2.xml │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── AopLogTests.java │ │ │ └── ProfileLogConfigTests.java │ ├── spring-boot-mail │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── MailDTO.java │ │ │ │ │ ├── MailProperties.java │ │ │ │ │ ├── MailService.java │ │ │ │ │ └── SpringBootMailApplication.java │ │ │ └── resources │ │ │ │ ├── application-163.properties │ │ │ │ ├── application-qq.properties │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── MailServiceTests.java │ │ │ └── resources │ │ │ ├── icon-man.png │ │ │ └── moon.png │ ├── spring-boot-scheduler-quartz │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── QuartzController.java │ │ │ │ ├── SampleJob.java │ │ │ │ └── SpringBootSchedulerQuartzApplication.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── sql │ │ │ └── schema.sql │ ├── spring-boot-scheduler │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── ScheduledTask.java │ │ │ │ └── SpringBootSchedulerApplication.java │ │ │ └── resources │ │ │ ├── banner.txt │ │ │ └── logback.xml │ ├── spring-boot-shell │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── shell │ │ │ ├── DateCommand.java │ │ │ ├── JsonCommand.java │ │ │ └── SpringShellApplication.java │ ├── spring-boot-statemachine │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── Events.java │ │ │ │ ├── SpringBootStateMachineApplication.java │ │ │ │ ├── StateMachineConfig.java │ │ │ │ └── States.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ ├── spring-boot-swagger │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootSwaggerApplication.java │ │ │ │ ├── data │ │ │ │ ├── User.java │ │ │ │ └── UserRepository.java │ │ │ │ └── web │ │ │ │ ├── ResponseDTO.java │ │ │ │ └── UserController.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── sql │ │ │ ├── data-h2.sql │ │ │ └── schema-h2.sql │ └── spring-boot-test-junit5 │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── HelloController.java │ │ │ │ ├── HelloService.java │ │ │ │ └── TestJunit5Application.java │ │ └── resources │ │ │ ├── banner.txt │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ ├── AssertionsDemo.java │ │ ├── AssumptionsDemo.java │ │ ├── DisabledClassDemo.java │ │ ├── DisabledTestsDemo.java │ │ ├── JavaVersionTestsDemo.java │ │ ├── Junit5StandardTests.java │ │ ├── JunitDisplayNameDemo.java │ │ ├── OSEnvDemo.java │ │ ├── ParameterizedTestDemo.java │ │ ├── RepeatedTestsDemo.java │ │ ├── ServiceTestsDemo.java │ │ ├── SystemPropertyTestsDemo.java │ │ ├── TestJunit5ApplicationTests.java │ │ ├── TestOnWindows.java │ │ ├── TestingAStackDemo.java │ │ └── bean │ │ └── Person.java ├── mq │ ├── spring-boot-mq-activemq │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── Consumer.java │ │ │ │ │ ├── MsgActivemqApplication.java │ │ │ │ │ └── Producer.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── MsgActivemqApplicationTests.java │ ├── spring-boot-mq-kafka │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── KafkaProducerController.java │ │ │ │ │ ├── SpringBootMsgKafkaApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── DunwuKafkaConfig.java │ │ │ │ │ └── msg │ │ │ │ │ └── StringStringKafkaConsumer.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── KafkaProducerTest.java │ │ │ ├── KafkaTestBean.java │ │ │ └── SpringKafkaTest.java │ ├── spring-boot-mq-rabbitmq │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── RabbitConfiguration.java │ │ │ │ ├── RabbitConsumer.java │ │ │ │ ├── RabbitMqApplication.java │ │ │ │ └── RabbitProducer.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ └── spring-boot-mq-redis │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── MsgRedisApplication.java │ │ │ └── Receiver.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ └── logback.xml ├── security │ ├── spring-boot-security-authentication │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootAuthSecurityApplication.java │ │ │ │ └── security │ │ │ │ ├── config │ │ │ │ └── SecurityConfiguration.java │ │ │ │ ├── controller │ │ │ │ ├── IndexController.java │ │ │ │ └── UnAuthorizedController.java │ │ │ │ ├── domain │ │ │ │ └── MyUser.java │ │ │ │ └── handler │ │ │ │ ├── CustomAuthenticationFailureHandler.java │ │ │ │ └── CustomAuthenticationSuccessHandler.java │ │ │ └── resources │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── static │ │ │ ├── auth │ │ │ ├── forgot.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── reset.html │ │ │ ├── css │ │ │ ├── index.css │ │ │ └── theme.css │ │ │ └── index.html │ ├── spring-boot-security-checkcode │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── AuthCheckCodeSecurityApplication.java │ │ │ │ └── security │ │ │ │ ├── config │ │ │ │ ├── DunwuSecurityConfiguration.java │ │ │ │ ├── DunwuSecurityProperties.java │ │ │ │ └── UserDetailsManagerImpl.java │ │ │ │ ├── controller │ │ │ │ ├── CheckCodeController.java │ │ │ │ ├── IndexController.java │ │ │ │ └── LoginController.java │ │ │ │ ├── domain │ │ │ │ └── User.java │ │ │ │ ├── filter │ │ │ │ ├── DunwuSecurityException.java │ │ │ │ └── ValidateCodeFilter.java │ │ │ │ ├── handler │ │ │ │ ├── DunwuAuthenticationFailureHandler.java │ │ │ │ └── DunwuAuthenticationSucessHandler.java │ │ │ │ ├── mapper │ │ │ │ └── UserMapper.java │ │ │ │ └── util │ │ │ │ ├── CheckCodeUtils.java │ │ │ │ └── ImageUtil.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ ├── sql │ │ │ ├── data.sql │ │ │ └── schema.sql │ │ │ └── static │ │ │ ├── auth │ │ │ ├── forgot.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── reset.html │ │ │ ├── css │ │ │ ├── index.css │ │ │ └── theme.css │ │ │ └── index.html │ ├── spring-boot-security-ldap │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootLdapAuthApplication.java │ │ │ │ └── security │ │ │ │ ├── config │ │ │ │ └── SecurityConfiguration.java │ │ │ │ ├── controller │ │ │ │ ├── IndexController.java │ │ │ │ └── UnAuthorizedController.java │ │ │ │ ├── handler │ │ │ │ ├── CustomAuthenticationFailureHandler.java │ │ │ │ └── CustomAuthenticationSuccessHandler.java │ │ │ │ └── service │ │ │ │ ├── LdapUtil.java │ │ │ │ └── MyLdapUserDetailsMapper.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── static │ │ │ ├── auth │ │ │ ├── forgot.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── reset.html │ │ │ ├── css │ │ │ ├── index.css │ │ │ └── theme.css │ │ │ └── index.html │ ├── spring-boot-security-session │ │ ├── README.md │ │ ├── pom.xml │ │ ├── scripts │ │ │ ├── start.sh │ │ │ └── stop.sh │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootWebSessionApplication.java │ │ │ │ └── security │ │ │ │ ├── config │ │ │ │ ├── DunwuSecurityConfig.java │ │ │ │ ├── DunwuSecurityProperties.java │ │ │ │ └── UserDetailsManagerImpl.java │ │ │ │ ├── controller │ │ │ │ ├── CheckCodeController.java │ │ │ │ ├── IndexController.java │ │ │ │ └── LoginController.java │ │ │ │ ├── domain │ │ │ │ └── User.java │ │ │ │ ├── filter │ │ │ │ ├── DunwuSecurityException.java │ │ │ │ └── ValidateCodeFilter.java │ │ │ │ ├── handler │ │ │ │ ├── DunwuAuthenticationFailureHandler.java │ │ │ │ └── DunwuAuthenticationSucessHandler.java │ │ │ │ ├── mapper │ │ │ │ └── UserMapper.java │ │ │ │ └── util │ │ │ │ ├── CheckCodeUtils.java │ │ │ │ └── ImageUtil.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ ├── sql │ │ │ ├── data.sql │ │ │ └── schema.sql │ │ │ └── static │ │ │ ├── auth │ │ │ ├── forgot.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── reset.html │ │ │ ├── css │ │ │ ├── index.css │ │ │ └── theme.css │ │ │ └── index.html │ └── spring-boot-security-shiro │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ └── security │ │ │ │ ├── ShiroApplication.java │ │ │ │ ├── config │ │ │ │ ├── ShiroConfiguration.java │ │ │ │ └── ShiroProperties.java │ │ │ │ └── system │ │ │ │ ├── controller │ │ │ │ ├── DeptController.java │ │ │ │ ├── LoginController.java │ │ │ │ ├── MenuController.java │ │ │ │ ├── RoleController.java │ │ │ │ ├── UserController.java │ │ │ │ └── ViewController.java │ │ │ │ ├── entity │ │ │ │ ├── Dept.java │ │ │ │ ├── Menu.java │ │ │ │ ├── Role.java │ │ │ │ ├── RoleMenu.java │ │ │ │ ├── Test.java │ │ │ │ ├── User.java │ │ │ │ └── UserRole.java │ │ │ │ ├── mapper │ │ │ │ ├── DeptMapper.java │ │ │ │ ├── MenuMapper.java │ │ │ │ ├── RoleMapper.java │ │ │ │ ├── RoleMenuMapper.java │ │ │ │ ├── UserMapper.java │ │ │ │ └── UserRoleMapper.java │ │ │ │ └── service │ │ │ │ ├── IDeptService.java │ │ │ │ ├── IMenuService.java │ │ │ │ ├── IRoleMenuService.java │ │ │ │ ├── IRoleService.java │ │ │ │ ├── IUserRoleService.java │ │ │ │ ├── IUserService.java │ │ │ │ └── impl │ │ │ │ ├── DeptServiceImpl.java │ │ │ │ ├── MenuServiceImpl.java │ │ │ │ ├── RoleMenuServiceImpl.java │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ ├── UserRoleServiceImpl.java │ │ │ │ └── UserServiceImpl.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── db │ │ │ └── schema.sql │ │ │ └── mapper │ │ │ └── system │ │ │ ├── LoginLogMapper.xml │ │ │ ├── MenuMapper.xml │ │ │ ├── RoleMapper.xml │ │ │ └── UserMapper.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── security │ │ ├── BaseShiroTest.java │ │ └── MyShiroRealmTest.java ├── template │ ├── spring-boot-tmpl-freemark │ │ ├── pom.xml │ │ ├── sql │ │ │ └── init.sql │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── FreemarkHelper.java │ │ │ │ │ ├── SpringBootTmplFreemarkApplication.java │ │ │ │ │ ├── data │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserDAO.java │ │ │ │ │ └── UserDAOImpl.java │ │ │ │ │ └── web │ │ │ │ │ ├── FreemarkController.java │ │ │ │ │ ├── IndexController.java │ │ │ │ │ └── SqlFreemarkController.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ ├── static │ │ │ │ └── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── templates │ │ │ │ ├── spring │ │ │ │ ├── exception.ftl │ │ │ │ └── index.ftl │ │ │ │ ├── sql │ │ │ │ ├── create_table.ftl │ │ │ │ ├── drop_table.ftl │ │ │ │ ├── sql_clear.ftl │ │ │ │ ├── sql_create.ftl │ │ │ │ ├── sql_delete.ftl │ │ │ │ └── sql_select.ftl │ │ │ │ └── web │ │ │ │ ├── exception.ftl │ │ │ │ └── index.ftl │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootTmplFreemarkApplicationTests.java │ ├── spring-boot-tmpl-jsp │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── SpringBootWebJspApplication.java │ │ │ │ └── web │ │ │ │ ├── FailController.java │ │ │ │ ├── IndexController.java │ │ │ │ ├── MessageAdvice.java │ │ │ │ ├── MyException.java │ │ │ │ └── MyRestResponse.java │ │ │ ├── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── static │ │ │ │ └── test.txt │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ ├── error.jsp │ │ │ └── index.jsp │ ├── spring-boot-tmpl-thymeleaf │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootTmplThymeleafApplication.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── ErrorDTO.java │ │ │ │ │ └── StudentDTO.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── GlobalExceptionHandler.java │ │ │ │ │ └── MyException.java │ │ │ │ │ └── web │ │ │ │ │ └── IndexController.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── logback.xml │ │ │ │ └── templates │ │ │ │ ├── error.html │ │ │ │ └── index.html │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ └── SpringBootTmplThymeleafApplicationTests.java │ └── spring-boot-tmpl-velocity │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── VelocitySampleBootstrap.java │ │ │ ├── controller │ │ │ ├── BaseController.java │ │ │ ├── IndexController.java │ │ │ └── VelocityLayoutController.java │ │ │ ├── mail │ │ │ ├── MailDTO.java │ │ │ ├── MailProperties.java │ │ │ └── MailService.java │ │ │ ├── tools │ │ │ └── EchoTool.java │ │ │ ├── tools2 │ │ │ └── Echo2Tool.java │ │ │ └── util │ │ │ └── VelocityUtil.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── layout │ │ ├── default.vm │ │ ├── layout.vm │ │ └── layout2.vm │ │ ├── logback.xml │ │ ├── templates │ │ └── velocity │ │ │ └── default │ │ │ ├── footer.vm │ │ │ ├── header.vm │ │ │ ├── index.vm │ │ │ ├── mail.vm │ │ │ └── tools.vm │ │ ├── toolbox │ │ └── tools.xml │ │ └── velocity.properties └── web │ ├── pom.xml │ ├── spring-boot-web-fastjson │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── SpringBootWebFastjsonApplication.java │ │ │ ├── dto │ │ │ ├── BaseResponse.java │ │ │ ├── CodeEn.java │ │ │ ├── InfoDTO.java │ │ │ └── TypeException.java │ │ │ └── web │ │ │ ├── AppException.java │ │ │ ├── DateJsonConvert.java │ │ │ ├── JsonController.java │ │ │ └── WebMvcConfig.java │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ ├── DemoTest.java │ │ └── SpringBootWebFastjsonApplicationTests.java │ ├── spring-boot-web-form │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── Greeting.java │ │ │ │ ├── PersonForm.java │ │ │ │ ├── SpringBootWebFormApplication.java │ │ │ │ └── WebController.java │ │ └── resources │ │ │ ├── banner.txt │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── SpringBootWebFormApplicationTests.java │ ├── spring-boot-web-helloworld │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── HelloController.java │ │ │ │ ├── SpringBootHelloWorldApplication.java │ │ │ │ └── config │ │ │ │ └── CustomConfig.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── SpringBootHelloWorldApplicationTest.java │ ├── spring-boot-web-https │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── CustomConfig.java │ │ │ ├── HelloController.java │ │ │ ├── SpringBootHttpsApplication.java │ │ │ ├── WeatherService.java │ │ │ └── bean │ │ │ ├── CityInfo.java │ │ │ ├── CoreWeatherInfo.java │ │ │ ├── Weather.java │ │ │ └── WeatherData.java │ │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── keystore.p12 │ │ └── logback.xml │ ├── spring-boot-web-multi-connectors │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── HelloController.java │ │ │ │ └── SpringBootWebTwoConnectorsApplication.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── sample.jks │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── SpringBootWebTwoConnectorsApplicationTests.java │ ├── spring-boot-web-ui │ ├── pom.xml │ ├── spring-boot-web-ui-bootstrap │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── github │ │ │ │ │ └── dunwu │ │ │ │ │ └── springboot │ │ │ │ │ ├── InMemoryMessageRepository.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageController.java │ │ │ │ │ ├── MessageRepository.java │ │ │ │ │ └── SpringBootWebUIBootstrapApplication.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── logback.xml │ │ │ │ ├── messages.properties │ │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── favicon.ico │ │ │ │ └── templates │ │ │ │ ├── fragments.html │ │ │ │ └── messages │ │ │ │ ├── form.html │ │ │ │ ├── list.html │ │ │ │ └── view.html │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── MessageControllerWebTests.java │ │ │ └── SampleWebUiApplicationTests.java │ ├── spring-boot-web-ui-easyui │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── IndexController.java │ │ │ │ ├── ResponseDTO.java │ │ │ │ ├── SpringBootWebUIEasyuiApplication.java │ │ │ │ ├── User.java │ │ │ │ ├── UserController.java │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── static │ │ │ ├── json │ │ │ └── datagrid_data1.json │ │ │ ├── lib │ │ │ └── easyui │ │ │ │ ├── jquery.easyui.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── locale │ │ │ │ ├── easyui-lang-en.js │ │ │ │ ├── easyui-lang-zh_CN.js │ │ │ │ └── easyui-lang-zh_TW.js │ │ │ │ └── themes │ │ │ │ ├── bootstrap │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tagbox_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── radiobutton.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── sidemenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tagbox.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── color.css │ │ │ │ ├── icon.css │ │ │ │ └── icons │ │ │ │ ├── back.png │ │ │ │ ├── blank.gif │ │ │ │ ├── cancel.png │ │ │ │ ├── clear.png │ │ │ │ ├── cut.png │ │ │ │ ├── edit_add.png │ │ │ │ ├── edit_remove.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filter.png │ │ │ │ ├── help.png │ │ │ │ ├── large_chart.png │ │ │ │ ├── large_clipart.png │ │ │ │ ├── large_picture.png │ │ │ │ ├── large_shapes.png │ │ │ │ ├── large_smartart.png │ │ │ │ ├── lock.png │ │ │ │ ├── man.png │ │ │ │ ├── mini_add.png │ │ │ │ ├── mini_edit.png │ │ │ │ ├── mini_refresh.png │ │ │ │ ├── more.png │ │ │ │ ├── no.png │ │ │ │ ├── ok.png │ │ │ │ ├── pencil.png │ │ │ │ ├── print.png │ │ │ │ ├── redo.png │ │ │ │ ├── reload.png │ │ │ │ ├── search.png │ │ │ │ ├── sum.png │ │ │ │ ├── tip.png │ │ │ │ └── undo.png │ │ │ ├── plugin │ │ │ └── themes │ │ │ │ └── default │ │ │ │ └── numberbox.css │ │ │ └── views │ │ │ ├── index.html │ │ │ └── user.html │ └── spring-boot-web-ui-react │ │ ├── config │ │ └── nginx.conf │ │ ├── pom.xml │ │ ├── spring-boot-web-ui-react-backend │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── WebHelloworldApplication.java │ │ │ │ ├── config │ │ │ │ └── DunwuWebConfiguration.java │ │ │ │ └── web │ │ │ │ ├── controller │ │ │ │ ├── ApiController.java │ │ │ │ └── IndexController.java │ │ │ │ └── dto │ │ │ │ ├── BaseResponseDTO.java │ │ │ │ └── MenuDTO.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── logback.xml │ │ └── spring-boot-web-ui-react-frontend │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── config │ │ ├── app.config.js │ │ ├── webpack.config.base.js │ │ ├── webpack.config.dev.js │ │ └── webpack.config.prod.js │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ │ ├── scripts │ │ └── build.sh │ │ └── src │ │ ├── common │ │ └── apiutils │ │ │ ├── ajaxCommon.js │ │ │ ├── apiCreator.js │ │ │ ├── errorUtils.js │ │ │ ├── fetchAJAX.js │ │ │ ├── index.js │ │ │ └── reqwestAJAX.js │ │ ├── components │ │ ├── index.js │ │ └── layout │ │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.jsx │ │ │ └── Breadcrumb.less │ │ │ ├── Content │ │ │ ├── Content.jsx │ │ │ └── Content.less │ │ │ ├── Footer │ │ │ ├── Footer.jsx │ │ │ └── index.less │ │ │ ├── Header │ │ │ ├── Header.jsx │ │ │ └── Header.less │ │ │ └── Sidebar │ │ │ ├── Sidebar.jsx │ │ │ ├── Sidebar.less │ │ │ └── antd.svg │ │ ├── containers │ │ ├── Core │ │ │ ├── CoreContainer.jsx │ │ │ ├── CoreContainer.less │ │ │ └── package.json │ │ └── Root │ │ │ ├── ReduxDevTools.jsx │ │ │ ├── RootContainer.dev.jsx │ │ │ ├── RootContainer.jsx │ │ │ └── RootContainer.prod.jsx │ │ ├── index.jsx │ │ ├── redux │ │ ├── actions │ │ │ ├── auth.js │ │ │ └── menu.js │ │ ├── constants │ │ │ ├── authActionType.js │ │ │ ├── commonActionTypes.js │ │ │ └── menuActionType.js │ │ ├── middlewares │ │ │ └── promiseMiddleware.js │ │ ├── reducers │ │ │ ├── auth.js │ │ │ ├── index.js │ │ │ └── menu.js │ │ └── store │ │ │ ├── configureStore.dev.js │ │ │ ├── configureStore.js │ │ │ └── configureStore.prod.js │ │ ├── routes │ │ └── index.jsx │ │ ├── utils │ │ ├── asyncLoadHOC.js │ │ ├── authHOC.jsx │ │ ├── http.js │ │ └── index.jsx │ │ ├── views │ │ └── pages │ │ │ ├── home │ │ │ ├── Home.jsx │ │ │ ├── Home.less │ │ │ └── logo.svg │ │ │ ├── login │ │ │ ├── Login.jsx │ │ │ ├── Login.less │ │ │ ├── bg.jpg │ │ │ └── login-logo.png │ │ │ ├── mail │ │ │ └── Mailbox.jsx │ │ │ └── user │ │ │ ├── User.jsx │ │ │ └── User.less │ │ └── webapi │ │ ├── mock │ │ ├── index.js │ │ ├── menu.js │ │ └── user.js │ │ ├── package.json │ │ └── webapi.js │ ├── spring-boot-web-uploading │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── dunwu │ │ │ │ └── springboot │ │ │ │ ├── FileUploadController.java │ │ │ │ ├── SpringBootWebUploadingApplication.java │ │ │ │ └── storage │ │ │ │ ├── FileSystemStorageServiceImpl.java │ │ │ │ ├── StorageException.java │ │ │ │ ├── StorageFileNotFoundException.java │ │ │ │ ├── StorageProperties.java │ │ │ │ └── StorageService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── banner.txt │ │ │ ├── logback.xml │ │ │ └── templates │ │ │ └── uploadForm.html │ │ └── test │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── FileUploadIntegrationTests.java │ │ │ ├── FileUploadTests.java │ │ │ └── storage │ │ │ └── FileSystemStorageServiceImplTests.java │ │ └── resources │ │ └── io │ │ └── github │ │ └── dunwu │ │ └── springboot │ │ └── testupload.txt │ └── spring-boot-web-websocket │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── dunwu │ │ │ └── springboot │ │ │ ├── SpringBootWebSocketApplication.java │ │ │ ├── client │ │ │ ├── GreetingService.java │ │ │ ├── SimpleClientWebSocketHandler.java │ │ │ └── SimpleGreetingService.java │ │ │ ├── echo │ │ │ ├── DefaultEchoService.java │ │ │ ├── EchoService.java │ │ │ └── EchoWebSocketHandler.java │ │ │ ├── reverse │ │ │ └── ReverseWebSocketEndpoint.java │ │ │ └── snake │ │ │ ├── Direction.java │ │ │ ├── Location.java │ │ │ ├── Snake.java │ │ │ ├── SnakeTimer.java │ │ │ ├── SnakeUtils.java │ │ │ └── SnakeWebSocketHandler.java │ └── resources │ │ ├── banner.txt │ │ ├── logback.xml │ │ └── static │ │ ├── echo.html │ │ ├── index.html │ │ ├── reverse.html │ │ └── snake.html │ └── test │ └── java │ └── io │ └── github │ └── dunwu │ └── springboot │ ├── SpringBootWebSocketApplicationTests.java │ ├── echo │ └── CustomContainerWebSocketsApplicationTests.java │ └── snake │ └── SnakeTimerTests.java ├── docs ├── .vuepress │ ├── config.js │ ├── config │ │ ├── baiduCode.js │ │ └── htmlModules.js │ ├── enhanceApp.js │ ├── plugins │ │ └── love-me │ │ │ ├── index.js │ │ │ └── love-me.js │ ├── public │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── bg.gif │ │ │ ├── dunwu-logo.png │ │ │ ├── favicon.ico │ │ │ ├── more.png │ │ │ └── other.png │ │ └── markmap │ │ │ └── 01.html │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── 10.Java │ └── 13.框架 │ │ └── 02.SpringBoot │ │ ├── 00.SpringBoot综合 │ │ ├── 01.SpringBoot知识图谱.md │ │ └── 02.SpringBoot基本原理.md │ │ ├── 01.SpringBoot基础 │ │ ├── 01.SpringBoot之快速入门.md │ │ ├── 02.SpringBoot之属性加载.md │ │ └── 03.SpringBoot之Profile.md │ │ ├── 02.SpringBootWeb │ │ └── 01.SpringBoot之应用EasyUI.md │ │ ├── 03.SpringBoot数据 │ │ ├── 01.SpringBoot之JDBC.md │ │ ├── 11.SpringBoot之Mybatis.md │ │ ├── 22.SpringBoot之Elasticsearch.md │ │ └── 23.SpringBoot之MongoDB.md │ │ ├── 04.SpringBootIO │ │ ├── 01.SpringBoot之异步请求.md │ │ ├── 02.SpringBoot之Json.md │ │ └── 03.SpringBoot之邮件.md │ │ ├── 10.SpringBoot安全 │ │ └── 01.SpringBoot之安全快速入门.md │ │ └── 99.SpringBoot其他 │ │ └── 01.SpringBoot之banner定制.md ├── @pages │ ├── archivesPage.md │ ├── categoriesPage.md │ └── tagsPage.md └── README.md ├── package.json ├── pom.xml ├── prettier.config.js ├── scripts ├── build.sh ├── deploy.sh └── version.sh └── utils ├── config.yml ├── editFrontmatter.js └── modules ├── fn.js └── readFileList.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "compact": false 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /assets/spring-boot-reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/assets/spring-boot-reference.pdf -------------------------------------------------------------------------------- /codes/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/README.md -------------------------------------------------------------------------------- /codes/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/README.md: -------------------------------------------------------------------------------- 1 | # Spring Boot + 2 | -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/src/main/java/io/github/dunwu/springboot/SpringBootActuatorApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/src/main/java/io/github/dunwu/springboot/SpringBootActuatorApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/src/main/java/io/github/dunwu/springboot/WelcomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/src/main/java/io/github/dunwu/springboot/WelcomeController.java -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/src/main/resources/templates/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/src/main/resources/templates/error.ftl -------------------------------------------------------------------------------- /codes/core/spring-boot-actuator/src/main/resources/templates/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-actuator/src/main/resources/templates/home.ftl -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/SpringBootAopApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/SpringBootAopApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecord.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecordDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecordDao.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecordDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/LogRecordDaoImpl.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/MethodLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/MethodLog.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/MethodLogAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/aop/MethodLogAspect.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/monitor/ServiceAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/monitor/ServiceAspect.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/service/WelcomeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/java/io/github/dunwu/springboot/service/WelcomeService.java -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/core/spring-boot-aop/src/test/java/io/github/dunwu/springboot/SpringBootAopApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-aop/src/test/java/io/github/dunwu/springboot/SpringBootAopApplicationTests.java -------------------------------------------------------------------------------- /codes/core/spring-boot-async/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/AppRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/AppRunner.java -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/SpringBootAsyncApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/SpringBootAsyncApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/service/GitHubLookupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/service/GitHubLookupService.java -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/service/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/java/io/github/dunwu/springboot/service/User.java -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-async/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-async/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-banner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-banner/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-banner/src/main/java/io/github/dunwu/springboot/SpringBootBannerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-banner/src/main/java/io/github/dunwu/springboot/SpringBootBannerApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-banner/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-banner/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-banner/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-banner/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/README.md -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/BeanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/BeanUtil.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/SpringBootBeanApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/SpringBootBeanApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/Company.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/Company.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/InfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/InfoDTO.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/Person.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/UserDO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/UserDO.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/java/io/github/dunwu/springboot/bean/UserDTO.java -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/resources/dozer-mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/resources/dozer-mapping.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-bean/src/test/java/io/github/dunwu/springboot/SpringBootBeanApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-bean/src/test/java/io/github/dunwu/springboot/SpringBootBeanApplicationTests.java -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/java/io/github/dunwu/springboot/SpringBootProfileApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/java/io/github/dunwu/springboot/SpringBootProfileApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/java/io/github/dunwu/springboot/service/MessageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/java/io/github/dunwu/springboot/service/MessageService.java -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | dunwu.message = The app is running on profile dev. 2 | -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/application-test.properties: -------------------------------------------------------------------------------- 1 | dunwu.message = The app is running on profile test. 2 | -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-profile/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-profile/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-property/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/README.md -------------------------------------------------------------------------------- /codes/core/spring-boot-property/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/pom.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/SpringBootPropertyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/SpringBootPropertyApplication.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/annotation/IsMobile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/annotation/IsMobile.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/annotation/RegexValid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/annotation/RegexValid.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/CustomConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/CustomConfig.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/DunwuProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/DunwuProperties.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/DunwuRandomProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/DunwuRandomProperties.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/GenderEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/GenderEnum.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/ValidatedProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/config/ValidatedProperties.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/validator/MobileValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/validator/MobileValidator.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/validator/RegexValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/java/io/github/dunwu/springboot/validator/RegexValidator.java -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/application-prop.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/application-prop.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/application-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/application-yaml.yaml -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/prop/custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/prop/custom.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/prop/random.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/prop/random.properties -------------------------------------------------------------------------------- /codes/core/spring-boot-property/src/main/resources/prop/validator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/core/spring-boot-property/src/main/resources/prop/validator.properties -------------------------------------------------------------------------------- /codes/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/README.md -------------------------------------------------------------------------------- /codes/data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/readme.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/META-INF/spring-configuration-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/META-INF/spring-configuration-metadata.json -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/j2cache.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/j2cache.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/test/java/io/github/dunwu/springboot/bean/TestBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/test/java/io/github/dunwu/springboot/bean/TestBean.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/test/java/io/github/dunwu/springboot/service/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/test/java/io/github/dunwu/springboot/service/TestService.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/test/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-j2cache/src/test/resources/j2cache-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-j2cache/src/test/resources/j2cache-test.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/java/io/github/dunwu/springboot/data/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/java/io/github/dunwu/springboot/data/entity/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/java/io/github/dunwu/springboot/data/mapper/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/java/io/github/dunwu/springboot/data/mapper/UserDao.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache-jetcache/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache-jetcache/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/UserDao.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-cache/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-cache/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDao.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDaoExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDaoExecutor.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-druid/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-druid/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch-jest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch-jest/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch-jest/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/README.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/JestClientDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/JestClientDemo.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/data/entities/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/data/entities/Author.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/data/entities/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/java/io/github/dunwu/springboot/data/entities/Car.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-elasticsearch/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-elasticsearch/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/UserDao.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/resources/sql/V1__Create_table_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/resources/sql/V1__Create_table_user.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-flyway/src/main/resources/sql/V2__Add_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-flyway/src/main/resources/sql/V2__Add_user.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsConfig.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsFactory.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsPool.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/data/hdfs/HdfsUtil.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/springboot/HdfsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/springboot/HdfsConfiguration.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/springboot/HdfsProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/java/io/github/dunwu/springboot/HdfsProperties.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-hdfs/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-hdfs/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/README.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/schema-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/schema-h2.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc-multi-datasource/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/README.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDao.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDaoExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDaoExecutor.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/java/io/github/dunwu/springboot/data/UserDaoImpl.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jdbc/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jdbc/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/README.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/java/io/github/dunwu/springboot/data/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/java/io/github/dunwu/springboot/data/UserRepository.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/test/java/io/github/dunwu/springboot/SpringBootJpaRestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/test/java/io/github/dunwu/springboot/SpringBootJpaRestTest.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/test/java/io/github/dunwu/springboot/SpringBootJpaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/test/java/io/github/dunwu/springboot/SpringBootJpaTest.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/test/resources/application-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/test/resources/application-test.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/test/resources/sql/data-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/test/resources/sql/data-h2.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-jpa/src/test/resources/sql/schema-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-jpa/src/test/resources/sql/schema-h2.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/src/main/java/io/github/dunwu/springboot/mongodb/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/src/main/java/io/github/dunwu/springboot/mongodb/Person.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mongodb/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mongodb/src/test/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-multi-datasource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-multi-datasource/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-multi-datasource/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/java/io/github/dunwu/springboot/data/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/java/io/github/dunwu/springboot/data/entity/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/test/resources/application-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/test/resources/application-test.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/test/resources/sql/data-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/test/resources/sql/data-h2.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-plus/src/test/resources/sql/schema-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-plus/src/test/resources/sql/schema-h2.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-master-slave.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-sharding-databases.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-sharding-databases.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-sharding-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application-sharding-tables.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/clear.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/clear.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/master_slave.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/master_slave.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_databases.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_databases_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_databases_tables.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-mybatis-sharding/src/main/resources/sql/sharding_tables.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/src/main/java/io/github/dunwu/springboot/data/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/src/main/java/io/github/dunwu/springboot/data/UserService.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis-cluster/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis-cluster/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/RedisAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/RedisAutoConfiguration.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/UserService.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/java/io/github/dunwu/springboot/data/UserServiceImpl.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/data/spring-boot-data-redis/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-redis/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/README.md -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/pom.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/UserEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/UserEntity.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/UserRepository.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/propagation/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/propagation/UserService.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/proxyfailed/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/java/io/github/dunwu/springboot/data/proxyfailed/UserService.java -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/applicationContext.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/data/spring-druid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/data/spring-druid.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/data/spring-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/data/spring-h2.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/data/spring-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/data/spring-mysql.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/news.csv -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/properties/h2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/properties/h2.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/properties/mysql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/properties/mysql.properties -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/sql/h2/ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/sql/h2/ddl.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/sql/mysql/ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/sql/mysql/ddl.sql -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /codes/data/spring-boot-data-tx/src/main/resources/templates/xss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/data/spring-boot-data-tx/src/main/resources/templates/xss.html -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/README.md -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/spring-boot-dubbo-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/spring-boot-dubbo-api/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/spring-boot-dubbo-autoconfig-consumer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/spring-boot-dubbo-autoconfig-consumer/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/spring-boot-dubbo-autoconfig-provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/spring-boot-dubbo-autoconfig-provider/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/spring-boot-dubbo-zookeeper-consumer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/spring-boot-dubbo-zookeeper-consumer/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-dubbo/spring-boot-dubbo-zookeeper-provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-dubbo/spring-boot-dubbo-zookeeper-provider/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-zookeeper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-zookeeper/pom.xml -------------------------------------------------------------------------------- /codes/distributed/spring-boot-zookeeper/src/main/java/io/github/dunwu/springboot/ZooKeeperTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-zookeeper/src/main/java/io/github/dunwu/springboot/ZooKeeperTemplate.java -------------------------------------------------------------------------------- /codes/distributed/spring-boot-zookeeper/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/distributed/spring-boot-zookeeper/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-zookeeper/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/distributed/spring-boot-zookeeper/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/distributed/spring-boot-zookeeper/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/Dockerfile -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/boot.sh -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/env.sh -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 8080 2 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-docker/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-docker/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/java/io/github/dunwu/springboot/aspect/WebLogAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/java/io/github/dunwu/springboot/aspect/WebLogAspect.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/java/io/github/dunwu/springboot/web/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/java/io/github/dunwu/springboot/web/HelloController.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/application-log4j.properties: -------------------------------------------------------------------------------- 1 | logging.config = classpath:log4j.xml 2 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/application-log4j2.properties: -------------------------------------------------------------------------------- 1 | logging.config = classpath:log4j2.xml 2 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/application-logback.properties: -------------------------------------------------------------------------------- 1 | logging.config = classpath:logback.xml 2 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 8080 2 | spring.profiles.active = logback 3 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/test/java/io/github/dunwu/springboot/AopLogTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/test/java/io/github/dunwu/springboot/AopLogTests.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-logging/src/test/java/io/github/dunwu/springboot/ProfileLogConfigTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-logging/src/test/java/io/github/dunwu/springboot/ProfileLogConfigTests.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailDTO.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailProperties.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/java/io/github/dunwu/springboot/MailService.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/resources/application-163.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/resources/application-163.properties -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/resources/application-qq.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/resources/application-qq.properties -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | debug = true 2 | spring.profiles.active = qq 3 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/test/java/io/github/dunwu/springboot/MailServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/test/java/io/github/dunwu/springboot/MailServiceTests.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/test/resources/icon-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/test/resources/icon-man.png -------------------------------------------------------------------------------- /codes/integration/spring-boot-mail/src/test/resources/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-mail/src/test/resources/moon.png -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/src/main/java/io/github/dunwu/springboot/SampleJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/src/main/java/io/github/dunwu/springboot/SampleJob.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler-quartz/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler-quartz/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler/src/main/java/io/github/dunwu/springboot/ScheduledTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler/src/main/java/io/github/dunwu/springboot/ScheduledTask.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-scheduler/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-scheduler/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-shell/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-shell/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-shell/src/main/java/io/github/dunwu/springboot/shell/DateCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-shell/src/main/java/io/github/dunwu/springboot/shell/DateCommand.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-shell/src/main/java/io/github/dunwu/springboot/shell/JsonCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-shell/src/main/java/io/github/dunwu/springboot/shell/JsonCommand.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-statemachine/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/src/main/java/io/github/dunwu/springboot/Events.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-statemachine/src/main/java/io/github/dunwu/springboot/Events.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/src/main/java/io/github/dunwu/springboot/States.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-statemachine/src/main/java/io/github/dunwu/springboot/States.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-statemachine/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-statemachine/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-statemachine/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/data/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/data/UserRepository.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/web/ResponseDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/web/ResponseDTO.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/web/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/java/io/github/dunwu/springboot/web/UserController.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/resources/sql/data-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/resources/sql/data-h2.sql -------------------------------------------------------------------------------- /codes/integration/spring-boot-swagger/src/main/resources/sql/schema-h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-swagger/src/main/resources/sql/schema-h2.sql -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/README.md -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/pom.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/main/java/io/github/dunwu/springboot/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/main/java/io/github/dunwu/springboot/HelloController.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/main/java/io/github/dunwu/springboot/HelloService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/main/java/io/github/dunwu/springboot/HelloService.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/AssertionsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/AssertionsDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/AssumptionsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/AssumptionsDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/DisabledClassDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/DisabledClassDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/DisabledTestsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/DisabledTestsDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/OSEnvDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/OSEnvDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/RepeatedTestsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/RepeatedTestsDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/ServiceTestsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/ServiceTestsDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/TestOnWindows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/TestOnWindows.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/TestingAStackDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/TestingAStackDemo.java -------------------------------------------------------------------------------- /codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/bean/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/integration/spring-boot-test-junit5/src/test/java/io/github/dunwu/springboot/bean/Person.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/pom.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/Consumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/Consumer.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/MsgActivemqApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/MsgActivemqApplication.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/Producer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/java/io/github/dunwu/springboot/Producer.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-activemq/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-activemq/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/README.md -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/pom.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/KafkaProducerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/KafkaProducerController.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/SpringBootMsgKafkaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/SpringBootMsgKafkaApplication.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/config/DunwuKafkaConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/config/DunwuKafkaConfig.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/msg/StringStringKafkaConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/java/io/github/dunwu/springboot/msg/StringStringKafkaConsumer.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/KafkaProducerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/KafkaProducerTest.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/KafkaTestBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/KafkaTestBean.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/SpringKafkaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-kafka/src/test/java/io/github/dunwu/springboot/SpringKafkaTest.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/pom.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitConfiguration.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitConsumer.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitMqApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitMqApplication.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/java/io/github/dunwu/springboot/RabbitProducer.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-rabbitmq/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-rabbitmq/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/README.md -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/pom.xml -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/src/main/java/io/github/dunwu/springboot/MsgRedisApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/src/main/java/io/github/dunwu/springboot/MsgRedisApplication.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/src/main/java/io/github/dunwu/springboot/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/src/main/java/io/github/dunwu/springboot/Receiver.java -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/mq/spring-boot-mq-redis/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/mq/spring-boot-mq-redis/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/pom.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/auth/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/auth/forgot.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/auth/login.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/auth/register.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/auth/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/auth/reset.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/css/theme.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-authentication/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-authentication/src/main/resources/static/index.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/pom.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/forgot.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/login.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/register.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/auth/reset.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/css/theme.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-checkcode/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-checkcode/src/main/resources/static/index.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/pom.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/auth/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/auth/forgot.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/auth/login.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/auth/register.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/auth/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/auth/reset.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/css/theme.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-ldap/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-ldap/src/main/resources/static/index.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/README.md -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/pom.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/scripts/start.sh -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/scripts/stop.sh -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/sql/data.sql -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/sql/schema.sql -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/auth/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/auth/forgot.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/auth/login.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/auth/register.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/auth/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/auth/reset.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/css/theme.css -------------------------------------------------------------------------------- /codes/security/spring-boot-security-session/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-session/src/main/resources/static/index.html -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/pom.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/db/schema.sql -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/LoginLogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/LoginLogMapper.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/MenuMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/MenuMapper.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/RoleMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/RoleMapper.xml -------------------------------------------------------------------------------- /codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/security/spring-boot-security-shiro/src/main/resources/mapper/system/UserMapper.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/pom.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/sql/init.sql -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/FreemarkHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/FreemarkHelper.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/User.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/UserDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/UserDAO.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/UserDAOImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/java/io/github/dunwu/springboot/data/UserDAOImpl.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/spring/exception.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/spring/exception.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/spring/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/spring/index.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/create_table.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/create_table.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/drop_table.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/drop_table.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_clear.ftl: -------------------------------------------------------------------------------- 1 | DELETE FROM ${tableName} 2 | -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_create.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_create.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_delete.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_delete.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/sql/sql_select.ftl: -------------------------------------------------------------------------------- 1 | SELECT * FROM ${tableName} 2 | -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/web/exception.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/web/exception.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/web/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-freemark/src/main/resources/templates/web/index.ftl -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/README.md -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/pom.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/FailController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/FailController.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/IndexController.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MessageAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MessageAdvice.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MyException.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MyRestResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/java/io/github/dunwu/springboot/web/MyRestResponse.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/resources/static/test.txt: -------------------------------------------------------------------------------- 1 | Example - Spring Boot + Jsp 2 | -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/webapp/WEB-INF/jsp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/webapp/WEB-INF/jsp/error.jsp -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-jsp/src/main/webapp/WEB-INF/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-jsp/src/main/webapp/WEB-INF/jsp/index.jsp -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/pom.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/java/io/github/dunwu/springboot/dto/ErrorDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/java/io/github/dunwu/springboot/dto/ErrorDTO.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/java/io/github/dunwu/springboot/dto/StudentDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/java/io/github/dunwu/springboot/dto/StudentDTO.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.thymeleaf.cache = false 2 | -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-thymeleaf/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/pom.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/mail/MailDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/mail/MailDTO.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/mail/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/mail/MailService.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/tools/EchoTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/tools/EchoTool.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/tools2/Echo2Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/tools2/Echo2Tool.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/util/VelocityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/java/io/github/dunwu/springboot/util/VelocityUtil.java -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/default.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/default.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/layout.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/layout2.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/layout/layout2.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/footer.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/header.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/index.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/index.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/mail.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/mail.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/tools.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/templates/velocity/default/tools.vm -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/toolbox/tools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/toolbox/tools.xml -------------------------------------------------------------------------------- /codes/template/spring-boot-tmpl-velocity/src/main/resources/velocity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/template/spring-boot-tmpl-velocity/src/main/resources/velocity.properties -------------------------------------------------------------------------------- /codes/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/BaseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/BaseResponse.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/CodeEn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/CodeEn.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/InfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/InfoDTO.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/TypeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/dto/TypeException.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/AppException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/AppException.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/DateJsonConvert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/DateJsonConvert.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/JsonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/JsonController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/WebMvcConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/main/java/io/github/dunwu/springboot/web/WebMvcConfig.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-fastjson/src/test/java/io/github/dunwu/springboot/DemoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-fastjson/src/test/java/io/github/dunwu/springboot/DemoTest.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/README.md -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/Greeting.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/PersonForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/PersonForm.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/SpringBootWebFormApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/SpringBootWebFormApplication.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/WebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/java/io/github/dunwu/springboot/WebController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-form/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-form/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/src/main/java/io/github/dunwu/springboot/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/src/main/java/io/github/dunwu/springboot/HelloController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/src/main/java/io/github/dunwu/springboot/config/CustomConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/src/main/java/io/github/dunwu/springboot/config/CustomConfig.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-helloworld/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-helloworld/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/README.md -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/CustomConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/CustomConfig.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/HelloController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/SpringBootHttpsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/SpringBootHttpsApplication.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/WeatherService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/WeatherService.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/CityInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/CityInfo.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/CoreWeatherInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/CoreWeatherInfo.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/Weather.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/WeatherData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/java/io/github/dunwu/springboot/bean/WeatherData.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/resources/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/resources/keystore.p12 -------------------------------------------------------------------------------- /codes/web/spring-boot-web-https/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-https/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/src/main/java/io/github/dunwu/springboot/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/src/main/java/io/github/dunwu/springboot/HelloController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-multi-connectors/src/main/resources/sample.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-multi-connectors/src/main/resources/sample.jks -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/messages.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/fragments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/fragments.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/form.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/list.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-bootstrap/src/main/resources/templates/messages/view.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/java/io/github/dunwu/springboot/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/java/io/github/dunwu/springboot/User.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/json/datagrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/json/datagrid_data1.json -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/lib/easyui/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/lib/easyui/jquery.min.js -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/lib/easyui/themes/bootstrap/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/plugin/themes/default/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/views/index.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/views/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-easyui/src/main/resources/static/views/user.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/config/nginx.conf -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-backend/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-backend/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 9527 2 | spring.jackson.default-property-inclusion = non_null 3 | -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.babelrc -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.editorconfig -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.eslintrc -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.gitattributes -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/.gitignore -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/package.json -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/public/index.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/scripts/build.sh -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/components/layout/Content/Content.less: -------------------------------------------------------------------------------- 1 | .ant-layout-content { 2 | background: #fff; 3 | padding: 24px; 4 | } 5 | -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/index.jsx -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/utils/http.js -------------------------------------------------------------------------------- /codes/web/spring-boot-web-ui/spring-boot-web-ui-react/spring-boot-web-ui-react-frontend/src/views/pages/user/User.less: -------------------------------------------------------------------------------- 1 | .user-view-row { 2 | padding-bottom: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/README.md -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/java/io/github/dunwu/springboot/FileUploadController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/java/io/github/dunwu/springboot/FileUploadController.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/java/io/github/dunwu/springboot/storage/StorageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/java/io/github/dunwu/springboot/storage/StorageService.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/resources/application.properties -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/main/resources/templates/uploadForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/main/resources/templates/uploadForm.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/test/java/io/github/dunwu/springboot/FileUploadTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-uploading/src/test/java/io/github/dunwu/springboot/FileUploadTests.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-uploading/src/test/resources/io/github/dunwu/springboot/testupload.txt: -------------------------------------------------------------------------------- 1 | Spring Framework -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/pom.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/client/GreetingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/client/GreetingService.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/echo/DefaultEchoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/echo/DefaultEchoService.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/echo/EchoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/echo/EchoService.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Direction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Direction.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Location.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Snake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/Snake.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/SnakeTimer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/SnakeTimer.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/SnakeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/java/io/github/dunwu/springboot/snake/SnakeUtils.java -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/banner.txt -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/static/echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/static/echo.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/static/index.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/static/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/static/reverse.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/main/resources/static/snake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/main/resources/static/snake.html -------------------------------------------------------------------------------- /codes/web/spring-boot-web-websocket/src/test/java/io/github/dunwu/springboot/snake/SnakeTimerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/codes/web/spring-boot-web-websocket/src/test/java/io/github/dunwu/springboot/snake/SnakeTimerTests.java -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/config/baiduCode.js: -------------------------------------------------------------------------------- 1 | module.exports = ''; 2 | -------------------------------------------------------------------------------- /docs/.vuepress/config/htmlModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/config/htmlModules.js -------------------------------------------------------------------------------- /docs/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /docs/.vuepress/plugins/love-me/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/plugins/love-me/index.js -------------------------------------------------------------------------------- /docs/.vuepress/plugins/love-me/love-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/plugins/love-me/love-me.js -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/img/bg.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/dunwu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/img/dunwu-logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/img/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/img/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/img/more.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/img/other.png -------------------------------------------------------------------------------- /docs/.vuepress/public/markmap/01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/public/markmap/01.html -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/00.SpringBoot综合/01.SpringBoot知识图谱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/00.SpringBoot综合/01.SpringBoot知识图谱.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/00.SpringBoot综合/02.SpringBoot基本原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/00.SpringBoot综合/02.SpringBoot基本原理.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/01.SpringBoot之快速入门.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/01.SpringBoot之快速入门.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/02.SpringBoot之属性加载.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/02.SpringBoot之属性加载.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/03.SpringBoot之Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/01.SpringBoot基础/03.SpringBoot之Profile.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/02.SpringBootWeb/01.SpringBoot之应用EasyUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/02.SpringBootWeb/01.SpringBoot之应用EasyUI.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/01.SpringBoot之JDBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/01.SpringBoot之JDBC.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/11.SpringBoot之Mybatis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/11.SpringBoot之Mybatis.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/22.SpringBoot之Elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/22.SpringBoot之Elasticsearch.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/23.SpringBoot之MongoDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/03.SpringBoot数据/23.SpringBoot之MongoDB.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/01.SpringBoot之异步请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/01.SpringBoot之异步请求.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/02.SpringBoot之Json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/02.SpringBoot之Json.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/03.SpringBoot之邮件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/04.SpringBootIO/03.SpringBoot之邮件.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/10.SpringBoot安全/01.SpringBoot之安全快速入门.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/10.SpringBoot安全/01.SpringBoot之安全快速入门.md -------------------------------------------------------------------------------- /docs/10.Java/13.框架/02.SpringBoot/99.SpringBoot其他/01.SpringBoot之banner定制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/10.Java/13.框架/02.SpringBoot/99.SpringBoot其他/01.SpringBoot之banner定制.md -------------------------------------------------------------------------------- /docs/@pages/archivesPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/@pages/archivesPage.md -------------------------------------------------------------------------------- /docs/@pages/categoriesPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/@pages/categoriesPage.md -------------------------------------------------------------------------------- /docs/@pages/tagsPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/@pages/tagsPage.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/docs/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/pom.xml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/prettier.config.js -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /utils/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/utils/config.yml -------------------------------------------------------------------------------- /utils/editFrontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/utils/editFrontmatter.js -------------------------------------------------------------------------------- /utils/modules/fn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/utils/modules/fn.js -------------------------------------------------------------------------------- /utils/modules/readFileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunwu/spring-boot-tutorial/HEAD/utils/modules/readFileList.js --------------------------------------------------------------------------------