diff --git a/chapter-6-spring-boot-cache-redis/pom.xml b/chapter-6-spring-boot-cache-redis/pom.xml deleted file mode 100644 index 0134888..0000000 --- a/chapter-6-spring-boot-cache-redis/pom.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - 4.0.0 - chapter-6-spring-boot-cache-redis - 《Spring Boot 2.x 核心技术实战 - 上 基础篇》第 6 章《数据缓存》Demo - - demo.springboot - chapter-6-spring-boot-cache-redis - 1.0 - jar - - - org.springframework.boot - spring-boot-starter-parent - 2.1.3.RELEASE - - - - UTF-8 - UTF-8 - 1.8 - - - - - - - org.springframework.boot - spring-boot-starter-web - - - - - org.springframework.boot - spring-boot-starter-thymeleaf - - - - - org.springframework.boot - spring-boot-starter-data-jpa - - - - - com.h2database - h2 - runtime - - - - - org.springframework.boot - spring-boot-starter-cache - - - - - org.springframework.boot - spring-boot-starter-redis - - - - - org.springframework.boot - spring-boot-starter-test - test - - - - - - - - - - - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/libs-snapshot - - true - - - - - diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/WebApplication.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/WebApplication.java deleted file mode 100644 index 7b7d220..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/WebApplication.java +++ /dev/null @@ -1,18 +0,0 @@ -package demo.springboot; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.cache.annotation.EnableCaching; - -/** - * Spring Boot 应用启动类 - * - * Created by bysocket on 30/09/2017. - */ -@SpringBootApplication -@EnableCaching -public class WebApplication { - public static void main(String[] args) { - SpringApplication.run(WebApplication.class, args); - } -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/Book.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/Book.java deleted file mode 100644 index 5ce99aa..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/Book.java +++ /dev/null @@ -1,69 +0,0 @@ -package demo.springboot.domain; - -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.Id; -import java.io.Serializable; - -/** - * Book 实体类 - * - * Created by bysocket on 30/09/2017. - */ -@Entity -public class Book implements Serializable { - - /** - * 编号 - */ - @Id - @GeneratedValue - private Long id; - - /** - * 书名 - */ - private String name; - - /** - * 作者 - */ - private String writer; - - /** - * 简介 - */ - private String introduction; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getWriter() { - return writer; - } - - public void setWriter(String writer) { - this.writer = writer; - } - - public String getIntroduction() { - return introduction; - } - - public void setIntroduction(String introduction) { - this.introduction = introduction; - } -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/BookRepository.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/BookRepository.java deleted file mode 100644 index e0796e0..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/domain/BookRepository.java +++ /dev/null @@ -1,11 +0,0 @@ -package demo.springboot.domain; - -import org.springframework.data.jpa.repository.JpaRepository; - -/** - * Book 数据持久层操作接口 - * - * Created by bysocket on 09/10/2017. - */ -public interface BookRepository extends JpaRepository { -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/BookService.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/BookService.java deleted file mode 100644 index d2323b9..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/BookService.java +++ /dev/null @@ -1,45 +0,0 @@ -package demo.springboot.service; - -import demo.springboot.domain.Book; - -import java.util.List; - -/** - * Book 业务接口层 - * - * Created by bysocket on 30/09/2017. - */ -public interface BookService { - /** - * 获取所有 Book - */ - List findAll(); - - /** - * 新增 Book - * - * @param book {@link Book} - */ - Book insertByBook(Book book); - - /** - * 更新 Book - * - * @param book {@link Book} - */ - Book update(Book book); - - /** - * 删除 Book - * - * @param id 编号 - */ - Book delete(Long id); - - /** - * 获取 Book - * - * @param id 编号 - */ - Book findById(Long id); -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/impl/BookServiceImpl.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/impl/BookServiceImpl.java deleted file mode 100644 index d2b957e..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/service/impl/BookServiceImpl.java +++ /dev/null @@ -1,59 +0,0 @@ -package demo.springboot.service.impl; - -import demo.springboot.domain.Book; -import demo.springboot.domain.BookRepository; -import demo.springboot.service.BookService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.cache.annotation.CacheConfig; -import org.springframework.cache.annotation.CacheEvict; -import org.springframework.cache.annotation.CachePut; -import org.springframework.cache.annotation.Cacheable; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * Book 业务层实现 - * - * Created by bysocket on 30/09/2017. - */ -@Service -@CacheConfig(cacheNames = "books") -public class BookServiceImpl implements BookService { - - @Autowired - BookRepository bookRepository; - - @Override - public List findAll() { - return bookRepository.findAll(); - } - - @Override - public Book insertByBook(Book book) { - return bookRepository.save(book); - } - - @CachePut(key = "#p0.id") - @Override - public Book update(Book book) { - System.out.println(" call update method "); - return bookRepository.save(book); - } - - @CacheEvict(key = "#p0") - @Override - public Book delete(Long id) { - System.out.println(" call delete method "); - Book book = bookRepository.findById(id).get(); - bookRepository.delete(book); - return book; - } - - @Cacheable(key = "#p0") - @Override - public Book findById(Long id) { - System.out.println(" call findById method "); - return bookRepository.findById(id).get(); - } -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/web/BookController.java b/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/web/BookController.java deleted file mode 100644 index 3c6ac11..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/java/demo/springboot/web/BookController.java +++ /dev/null @@ -1,89 +0,0 @@ -package demo.springboot.web; - -import demo.springboot.domain.Book; -import demo.springboot.service.BookService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.*; - -/** - * Book 控制层 - * - * Created by bysocket on 30/09/2017. - */ -@Controller -@RequestMapping(value = "/book") -public class BookController { - - private static final String BOOK_FORM_PATH_NAME = "bookForm"; - private static final String BOOK_LIST_PATH_NAME = "bookList"; - private static final String REDIRECT_TO_BOOK_URL = "redirect:/book"; - - @Autowired - BookService bookService; - - /** - * 获取 Book 列表 - * 处理 "/book" 的 GET 请求,用来获取 Book 列表 - */ - @RequestMapping(method = RequestMethod.GET) - public String getBookList(ModelMap map) { - map.addAttribute("bookList",bookService.findAll()); - return BOOK_LIST_PATH_NAME; - } - - /** - * 获取创建 Book 表单 - */ - @RequestMapping(value = "/create", method = RequestMethod.GET) - public String createBookForm(ModelMap map) { - map.addAttribute("book", new Book()); - map.addAttribute("action", "create"); - return BOOK_FORM_PATH_NAME; - } - - /** - * 创建 Book - * 处理 "/book/create" 的 POST 请求,用来新建 Book 信息 - * 通过 @ModelAttribute 绑定表单实体参数,也通过 @RequestParam 传递参数 - */ - @RequestMapping(value = "/create", method = RequestMethod.POST) - public String postBook(@ModelAttribute Book book) { - bookService.insertByBook(book); - return REDIRECT_TO_BOOK_URL; - } - - /** - * 获取更新 Book 表单 - * 处理 "/book/update/{id}" 的 GET 请求,通过 URL 中的 id 值获取 Book 信息 - * URL 中的 id ,通过 @PathVariable 绑定参数 - */ - @RequestMapping(value = "/update/{id}", method = RequestMethod.GET) - public String getUser(@PathVariable Long id, ModelMap map) { - map.addAttribute("book", bookService.findById(id)); - map.addAttribute("action", "update"); - return BOOK_FORM_PATH_NAME; - } - - /** - * 更新 Book - * 处理 "/update" 的 PUT 请求,用来更新 Book 信息 - */ - @RequestMapping(value = "/update", method = RequestMethod.POST) - public String putBook(@ModelAttribute Book book) { - bookService.update(book); - return REDIRECT_TO_BOOK_URL; - } - - /** - * 删除 Book - * 处理 "/book/{id}" 的 GET 请求,用来删除 Book 信息 - */ - @RequestMapping(value = "/delete/{id}", method = RequestMethod.GET) - public String deleteBook(@PathVariable Long id) { - bookService.delete(id); - return REDIRECT_TO_BOOK_URL; - } - -} diff --git a/chapter-6-spring-boot-cache-redis/src/main/resources/application.properties b/chapter-6-spring-boot-cache-redis/src/main/resources/application.properties deleted file mode 100644 index b0d364a..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/resources/application.properties +++ /dev/null @@ -1,9 +0,0 @@ -## 是否启动日志 SQL 语句 -spring.jpa.show-sql=true - -spring.redis.host=localhost -spring.redis.port=6379 -spring.redis.jedis.pool.max-idle=8 -spring.redis.jedis.pool.min-idle=0 -spring.redis.jedis.pool.max-active=8 -spring.redis.jedis.pool.max-wait=-1 \ No newline at end of file diff --git a/chapter-6-spring-boot-cache-redis/src/main/resources/static/css/default.css b/chapter-6-spring-boot-cache-redis/src/main/resources/static/css/default.css deleted file mode 100755 index 4da3051..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/resources/static/css/default.css +++ /dev/null @@ -1,2 +0,0 @@ -/* contentDiv */ -.contentDiv {padding:20px 60px;} \ No newline at end of file diff --git a/chapter-6-spring-boot-cache-redis/src/main/resources/static/images/favicon.ico b/chapter-6-spring-boot-cache-redis/src/main/resources/static/images/favicon.ico deleted file mode 100755 index e5a2934..0000000 Binary files a/chapter-6-spring-boot-cache-redis/src/main/resources/static/images/favicon.ico and /dev/null differ diff --git a/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookForm.html b/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookForm.html deleted file mode 100644 index 43118b6..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookForm.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - 书籍管理 - - - -
- -
《Spring Boot 2.x 核心技术实战 - 上 基础篇》第 5 章《数据存储》Demo
- - - 书籍管理 - - -
- - - -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
-    - -
-
-
-
- - \ No newline at end of file diff --git a/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookList.html b/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookList.html deleted file mode 100644 index 2ab11c6..0000000 --- a/chapter-6-spring-boot-cache-redis/src/main/resources/templates/bookList.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - 书籍列表 - - - - -
- -
《Spring Boot 2.x 核心技术实战 - 上 基础篇》第 5 章《数据存储》Demo
- - - - 书籍列表 - - - - - - - - - - - - - - - - - - - -
书籍编号书名作者简介管理
删除
- -
新增书籍
-
- - - \ No newline at end of file diff --git a/chapter-6-spring-boot-cache-redis/src/test/java/demo/springboot/WebApplicationTests.java b/chapter-6-spring-boot-cache-redis/src/test/java/demo/springboot/WebApplicationTests.java deleted file mode 100644 index ebd0f53..0000000 --- a/chapter-6-spring-boot-cache-redis/src/test/java/demo/springboot/WebApplicationTests.java +++ /dev/null @@ -1,16 +0,0 @@ -package demo.springboot; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class WebApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/pom.xml b/pom.xml index 253246c..73acb51 100644 --- a/pom.xml +++ b/pom.xml @@ -1,86 +1,79 @@ 4.0.0 - springboot :: Examples + springboot-learning-example springboot - springboot + springboot-learning-example 1.0-SNAPSHOT pom - - - springboot-webflux-1-quickstart + + chapter-1-spring-boot-quickstart + + chapter-2-spring-boot-config + + chapter-3-spring-boot-web + + chapter-4-spring-boot-web-thymeleaf + + chapter-5-spring-boot-data-jpa + + chapter-4-spring-boot-validating-form-input + + chapter-5-spring-boot-paging-sorting - - springboot-webflux-2-restful + + spring-data-elasticsearch-crud + spring-data-elasticsearch-query - - - springboot-helloworld - springboot-properties - springboot-configuration - - - springboot-restful + + springboot-dubbo-server + springboot-dubbo-client + + + springboot-elasticsearch + springboot-freemarker - - springboot-validation-over-json - + + springboot-hbase + + + springboot-helloworld + + springboot-mybatis springboot-mybatis-annotation springboot-mybatis-mutil-datasource - - springboot-mybatis-redis springboot-mybatis-redis-annotation - - + + springboot-restful - - - springboot-dubbo-server - springboot-dubbo-client - - springboot-elasticsearch + + springboot-properties - - spring-data-elasticsearch-crud - spring-data-elasticsearch-query + + springboot-validation-over-json - - chapter-1-spring-boot-quickstart - - chapter-2-spring-boot-config - - chapter-3-spring-boot-web - - chapter-4-spring-boot-web-thymeleaf - - chapter-5-spring-boot-data-jpa - - - - - chapter-4-spring-boot-validating-form-input - - chapter-5-spring-boot-paging-sorting - - springboot-hbase + + + springboot-webflux-1-quickstart + + springboot-webflux-2-restful diff --git a/spring-data-elasticsearch-crud/pom.xml b/spring-data-elasticsearch-crud/pom.xml index d0fa431..821c309 100755 --- a/spring-data-elasticsearch-crud/pom.xml +++ b/spring-data-elasticsearch-crud/pom.xml @@ -6,7 +6,7 @@ springboot spring-data-elasticsearch-crud 0.0.1-SNAPSHOT - spring-data-elasticsearch-crud :: spring-data-elasticsearch - 基本案例 + spring-data-elasticsearch-crud diff --git a/spring-data-elasticsearch-query/pom.xml b/spring-data-elasticsearch-query/pom.xml index 60235d9..0992e41 100755 --- a/spring-data-elasticsearch-query/pom.xml +++ b/spring-data-elasticsearch-query/pom.xml @@ -6,7 +6,7 @@ springboot spring-data-elasticsearch-query 0.0.1-SNAPSHOT - spring-data-elasticsearch-query :: spring-data-elasticsearch - 实战案例详解 + spring-data-elasticsearch-query diff --git a/springboot-configuration/pom.xml b/springboot-configuration/pom.xml index 5a3df0d..fcb28fe 100755 --- a/springboot-configuration/pom.xml +++ b/springboot-configuration/pom.xml @@ -6,7 +6,7 @@ springboot springboot-configuration 0.0.1-SNAPSHOT - springboot-configuration :: 配置 Demo + springboot-configuration diff --git a/springboot-dubbo-client/pom.xml b/springboot-dubbo-client/pom.xml index 6b69be3..f259ac7 100755 --- a/springboot-dubbo-client/pom.xml +++ b/springboot-dubbo-client/pom.xml @@ -6,7 +6,6 @@ springboot springboot-dubbo-client 0.0.1-SNAPSHOT - springboot-dubbo 客户端:: 整合 Dubbo/ZooKeeper 详解 SOA 案例 diff --git a/springboot-dubbo-server/pom.xml b/springboot-dubbo-server/pom.xml index 0731658..f687227 100755 --- a/springboot-dubbo-server/pom.xml +++ b/springboot-dubbo-server/pom.xml @@ -6,7 +6,6 @@ springboot springboot-dubbo-server 0.0.1-SNAPSHOT - springboot-dubbo 服务端:: 整合 Dubbo/ZooKeeper 详解 SOA 案例 diff --git a/springboot-elasticsearch/pom.xml b/springboot-elasticsearch/pom.xml index 20b46e8..47187a9 100755 --- a/springboot-elasticsearch/pom.xml +++ b/springboot-elasticsearch/pom.xml @@ -6,7 +6,7 @@ springboot springboot-elasticsearch 0.0.1-SNAPSHOT - springboot-elasticsearch :: 整合 Elasticsearch + springboot-elasticsearch diff --git a/springboot-freemarker/pom.xml b/springboot-freemarker/pom.xml index 6be3f20..b035879 100755 --- a/springboot-freemarker/pom.xml +++ b/springboot-freemarker/pom.xml @@ -6,7 +6,7 @@ springboot springboot-freemarker 0.0.1-SNAPSHOT - springboot-freemarker :: 整合 FreeMarker 案例 + springboot-freemarker diff --git a/springboot-hbase/pom.xml b/springboot-hbase/pom.xml index 00aca67..2a594e8 100755 --- a/springboot-hbase/pom.xml +++ b/springboot-hbase/pom.xml @@ -6,7 +6,7 @@ springboot springboot-hbase 0.0.1-SNAPSHOT - springboot-hbase :: 集成 HBase + springboot-hbase @@ -17,7 +17,6 @@ 1.0.0.RELEASE - 5.1.39 diff --git a/springboot-helloworld/pom.xml b/springboot-helloworld/pom.xml index 90ae6e6..20264a2 100755 --- a/springboot-helloworld/pom.xml +++ b/springboot-helloworld/pom.xml @@ -6,7 +6,7 @@ springboot springboot-helloworld 0.0.1-SNAPSHOT - springboot-helloworld :: HelloWorld Demo + springboot-helloworld diff --git a/springboot-mybatis-annotation/pom.xml b/springboot-mybatis-annotation/pom.xml index bbaf25c..7f6b9c8 100644 --- a/springboot-mybatis-annotation/pom.xml +++ b/springboot-mybatis-annotation/pom.xml @@ -9,7 +9,7 @@ jar springboot-mybatis-annotation - Springboot-mybatis :: 整合 Mybatis Annotation 案例 + Springboot-mybatis diff --git a/springboot-mybatis-mutil-datasource/pom.xml b/springboot-mybatis-mutil-datasource/pom.xml index 90fb8ac..b86deaa 100755 --- a/springboot-mybatis-mutil-datasource/pom.xml +++ b/springboot-mybatis-mutil-datasource/pom.xml @@ -6,7 +6,7 @@ springboot springboot-mybatis-mutil-datasource 0.0.1-SNAPSHOT - springboot-mybatis-mutil-datasource :: Spring Boot 实现 Mybatis 多数据源配置 + springboot-mybatis-mutil-datasource diff --git a/springboot-mybatis-redis-annotation/pom.xml b/springboot-mybatis-redis-annotation/pom.xml index a608e8d..ec20a36 100755 --- a/springboot-mybatis-redis-annotation/pom.xml +++ b/springboot-mybatis-redis-annotation/pom.xml @@ -6,7 +6,7 @@ springboot springboot-mybatis-redis-annotation 0.0.1-SNAPSHOT - springboot-mybatis-redis-annotation :: 注解实现整合 Redis 作为缓存 + springboot-mybatis-redis-annotation diff --git a/springboot-mybatis-redis/pom.xml b/springboot-mybatis-redis/pom.xml index ef9f165..b61b9ac 100755 --- a/springboot-mybatis-redis/pom.xml +++ b/springboot-mybatis-redis/pom.xml @@ -6,7 +6,7 @@ springboot springboot-mybatis-redis 0.0.1-SNAPSHOT - springboot-mybatis-redis :: 整合 Mybatis 并使用 Redis 作为缓存 + springboot-mybatis-redis diff --git a/springboot-mybatis/pom.xml b/springboot-mybatis/pom.xml index 62b4d14..465e6ad 100755 --- a/springboot-mybatis/pom.xml +++ b/springboot-mybatis/pom.xml @@ -6,7 +6,7 @@ springboot springboot-mybatis 0.0.1-SNAPSHOT - springboot-mybatis :: 整合 Mybatis Demo + springboot-mybatis diff --git a/springboot-properties/pom.xml b/springboot-properties/pom.xml index 81fe664..5e49bf8 100755 --- a/springboot-properties/pom.xml +++ b/springboot-properties/pom.xml @@ -6,7 +6,7 @@ springboot springboot-properties 0.0.1-SNAPSHOT - springboot-properties :: Spring boot 配置文件 + springboot-properties diff --git a/springboot-restful/pom.xml b/springboot-restful/pom.xml index 485b6f9..dd11930 100755 --- a/springboot-restful/pom.xml +++ b/springboot-restful/pom.xml @@ -6,7 +6,7 @@ springboot springboot-restful 0.0.1-SNAPSHOT - springboot-restful :: Spsringboot 实现 Restful 服务,基于 HTTP / JSON 传输 Demo + springboot-restful diff --git a/springboot-validation-over-json/pom.xml b/springboot-validation-over-json/pom.xml index aaf48f0..9ae6de9 100755 --- a/springboot-validation-over-json/pom.xml +++ b/springboot-validation-over-json/pom.xml @@ -6,7 +6,7 @@ springboot springboot-validation-over-json 0.0.1-SNAPSHOT - springboot-validation-over-json :: Validation with http over json Demo + springboot-validation-over-json diff --git a/springboot-webflux-1-quickstart/pom.xml b/springboot-webflux-1-quickstart/pom.xml index 3b58264..b1b5d16 100755 --- a/springboot-webflux-1-quickstart/pom.xml +++ b/springboot-webflux-1-quickstart/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-1-quickstart 0.0.1-SNAPSHOT - springboot-webflux-1-quickstart :: Spring Boot WebFlux 快速入门 + springboot-webflux-1-quickstart org.springframework.boot diff --git a/springboot-webflux-2-restful/pom.xml b/springboot-webflux-2-restful/pom.xml index e75d309..89478e1 100755 --- a/springboot-webflux-2-restful/pom.xml +++ b/springboot-webflux-2-restful/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-2-restful 0.0.1-SNAPSHOT - springboot-webflux-2-restful :: Spring Boot WebFlux 实现 Restful 服务 + springboot-webflux-2-restful diff --git a/springboot-webflux-3-mongodb/pom.xml b/springboot-webflux-3-mongodb/pom.xml index 035c5f2..10cc5d9 100755 --- a/springboot-webflux-3-mongodb/pom.xml +++ b/springboot-webflux-3-mongodb/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-3-mongodb 0.0.1-SNAPSHOT - springboot-webflux-3-mongodb :: Spring Boot WebFlux 整合 MongoDB + springboot-webflux-3-mongodb diff --git a/springboot-webflux-4-thymeleaf/pom.xml b/springboot-webflux-4-thymeleaf/pom.xml index ae8fe1d..b1ecafd 100755 --- a/springboot-webflux-4-thymeleaf/pom.xml +++ b/springboot-webflux-4-thymeleaf/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-4-thymeleaf 0.0.1-SNAPSHOT - springboot-webflux-4-thymeleaf :: Spring Boot WebFlux 整合 Thymeleaf + springboot-webflux-4-thymeleaf diff --git a/springboot-webflux-5-thymeleaf-mongodb/pom.xml b/springboot-webflux-5-thymeleaf-mongodb/pom.xml index d64bb72..5d09644 100755 --- a/springboot-webflux-5-thymeleaf-mongodb/pom.xml +++ b/springboot-webflux-5-thymeleaf-mongodb/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-5-thymeleaf-mongodb 0.0.1-SNAPSHOT - springboot-webflux-5-thymeleaf-mongodb :: Spring Boot WebFlux 中 Thymeleaf 和 Mongodb 实践 + springboot-webflux-5-thymeleaf-mongodb diff --git a/springboot-webflux-6-redis/pom.xml b/springboot-webflux-6-redis/pom.xml index 4cc6dc3..91dd4f0 100755 --- a/springboot-webflux-6-redis/pom.xml +++ b/springboot-webflux-6-redis/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-6-redis 0.0.1-SNAPSHOT - springboot-webflux-6-redis :: Spring Boot WebFlux 整合 Redis + springboot-webflux-6-redis diff --git a/springboot-webflux-7-redis-cache/pom.xml b/springboot-webflux-7-redis-cache/pom.xml index 3609e4d..3dd46cd 100755 --- a/springboot-webflux-7-redis-cache/pom.xml +++ b/springboot-webflux-7-redis-cache/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-7-redis-cache 0.0.1-SNAPSHOT - springboot-webflux-7-redis-cache :: Spring Boot WebFlux 整合 Redis 实现缓存 + springboot-webflux-7-redis-cache diff --git a/springboot-webflux-8-websocket/pom.xml b/springboot-webflux-8-websocket/pom.xml index 109c35a..75a8467 100755 --- a/springboot-webflux-8-websocket/pom.xml +++ b/springboot-webflux-8-websocket/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-8-websocket 0.0.1-SNAPSHOT - springboot-webflux-8-websocket :: Spring Boot WebFlux 中 WebSocket 实现通信 + springboot-webflux-8-websocket org.springframework.boot diff --git a/springboot-webflux-9-test/pom.xml b/springboot-webflux-9-test/pom.xml index 1132904..87fa2b3 100755 --- a/springboot-webflux-9-test/pom.xml +++ b/springboot-webflux-9-test/pom.xml @@ -6,7 +6,7 @@ springboot springboot-webflux-9-test 0.0.1-SNAPSHOT - springboot-webflux-9-test :: Spring Boot WebFlux 集成测试及部署 + springboot-webflux-9-test