diff --git a/README.md b/README.md
index 734540b..32c8cc7 100644
--- a/README.md
+++ b/README.md
@@ -20,23 +20,40 @@ springboot 版本 1.5.1.RELEASE
入门 HelloWorld 案例,Quick Start
[《Spring Boot 之 HelloWorld 详解》](http://www.bysocket.com/?p=1124 "Spring Boot 之 HelloWorld详解")
-##### b. Web 开发相关
+##### b. Web 开发相关- springboot-restful
+
+
+##### a. 『 基础 - 入门篇 』
+- springboot-helloworld
+ [《Spring Boot 之 HelloWorld 详解》](http://www.bysocket.com/?p=1124 "Spring Boot 之 HelloWorld详解")
+- springboot-properties
+《 Spring Boot 之配置文件详解》
+
+##### b. 『 基础 - Web 业务开发篇 』
+- springboot-restful
+ [《Springboot 实现 Restful 服务,基于 HTTP / JSON 传输》](http://www.bysocket.com/?p=1627 "Springboot 实现 Restful 服务,基于 HTTP / JSON 传输")
+ [《Spring Boot 之 RESRful API 权限控制》](http://www.bysocket.com/?p=1080 "Spring Boot 之 RESRful API 权限控制")
+- springboot-freemarker
+[《Spring Boot 集成 FreeMarker 详解案例》](http://www.bysocket.com/?p=1666 "Spring Boot 集成 FreeMarker 详解案例")
+
+##### c. 『 基础 – 数据存储篇 』
- springboot-mybatis
[《Springboot 整合 Mybatis 的完整 Web 案例》](http://www.bysocket.com/?p=1610 "Springboot 整合 Mybatis 的完整 Web 案例")
- springboot-mybatis-mutil-datasource
[《Spring Boot 整合 Mybatis 实现 Druid 多数据源详解》](http://www.bysocket.com/?p=1712 "Spring Boot 整合 Mybatis 实现 Druid 多数据源详解")
-- springboot-restful
- [《Springboot 实现 Restful 服务,基于 HTTP / JSON 传输》](http://www.bysocket.com/?p=1627 "Springboot 实现 Restful 服务,基于 HTTP / JSON 传输")
-- springboot-restful
- [《Spring Boot 集成 FreeMarker 详解案例》](http://www.bysocket.com/?p=1666 "Spring Boot 集成 FreeMarker 详解案例")
+
+
+##### d. 『 基础 – 数据缓存篇 』
+- springboot-mybatis-redis
+ [《Spring Boot 整合 Redis 实现缓存操作》](http://www.bysocket.com/?p=1712 "Spring Boot 整合 Mybatis 实现 Druid 多数据源详解")
+
+##### e. 『 其他篇 』
- springboot-dubbo-server
- springboot-dubbo-client
Dubbo 服务提供者工程和 Dubbo 服务消费者工程
[《Springboot 整合 Dubbo/ZooKeeper 详解 SOA 案例》](http://www.bysocket.com/?p=1681 "Springboot 整合 Dubbo/ZooKeeper 详解 SOA 案例")
- springboot-validation-over-json
[《Spring Boot HTTP over JSON 的错误码异常处理》](http://www.bysocket.com/?p=1692 "Spring Boot HTTP over JSON 的错误码异常处理")
-- springboot-mybatis-redis
- [《Spring Boot 整合 Redis 实现缓存操作》](http://www.bysocket.com/?p=1712 "Spring Boot 整合 Mybatis 实现 Druid 多数据源详解")
## 二、项目 Quick Start 快速开发指南
diff --git a/springboot-properties/src/main/resources/application.properties b/springboot-properties/src/main/resources/application.properties
index 84a3dd0..26e4275 100644
--- a/springboot-properties/src/main/resources/application.properties
+++ b/springboot-properties/src/main/resources/application.properties
@@ -1,3 +1,2 @@
# Spring Profiles Active
-spring.main.banner-mode=off
spring.profiles.active=dev
\ No newline at end of file
diff --git a/springboot-properties/src/test/java/org/spring/springboot/property/PropertiesTest.java b/springboot-properties/src/test/java/org/spring/springboot/property/PropertiesTest.java
index 399d303..6e22062 100644
--- a/springboot-properties/src/test/java/org/spring/springboot/property/PropertiesTest.java
+++ b/springboot-properties/src/test/java/org/spring/springboot/property/PropertiesTest.java
@@ -28,12 +28,12 @@ public class PropertiesTest {
@Test
public void getHomeProperties() {
- LOGGER.info(homeProperties.toString());
+ LOGGER.info("\n\n" + homeProperties.toString() + "\n");
}
@Test
public void randomTestUser() {
- LOGGER.info(userProperties.toString());
+ LOGGER.info("\n\n" + userProperties.toString() + "\n");
}
}