From dc8a353ba1c90ce74e2f3b74207f323c54aa56f3 Mon Sep 17 00:00:00 2001 From: JeffLi1993 Date: Tue, 28 Feb 2017 17:53:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 13 ++++++++----- .../src/main/resources/application.properties | 6 +++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3c3544e..cde699f 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,16 @@ springboot 版本 1.5.1.RELEASE 入门 HelloWorld 案例,Quick Start - [《Spring Boot 之 HelloWorld 详解》](http://www.bysocket.com/?p=1124 "Spring Boot 之 HelloWorld详解")
##### b. Web 开发相关 -- springboot-mybatis
+- springboot-mybatis
[《Springboot 整合 Mybatis 的完整 Web 案例》](http://www.bysocket.com/?p=1610 "Springboot 整合 Mybatis 的完整 Web 案例")
-- springboot-restful
+- springboot-restful
[《Springboot 实现 Restful 服务,基于 HTTP / JSON 传输》](http://www.bysocket.com/?p=1627 "Springboot 实现 Restful 服务,基于 HTTP / JSON 传输")
-- Spring Boot 集成 FreeMarker
-Spring Boot 集成 FreeMarker 及使用 taglib -- Spring Boot 集成 Dubbo
+- springboot-restful
+ [《Spring Boot 集成 FreeMarker 详解案例》](http://www.bysocket.com/?p=1666 "Spring Boot 集成 FreeMarker 详解案例")
+- springboot-dubbo-server 和 springboot-dubbo-client +Dubbo 服务提供者工程和 Dubbo 服务消费者工程 +Springboot 整合 Dubbo/ZooKeeper 详解 SOA 案例
+ ## 二、项目 Quick Start 快速开发指南 #### a. 基本环境配置 diff --git a/springboot-freemarker/src/main/resources/application.properties b/springboot-freemarker/src/main/resources/application.properties index 9208814..981c14e 100644 --- a/springboot-freemarker/src/main/resources/application.properties +++ b/springboot-freemarker/src/main/resources/application.properties @@ -1,7 +1,7 @@ ## 数据源配置 -spring.datasource.url=jdbc:mysql://localhost:3306/springbootdb?useUnicode=true&characterEncoding=utf8 +spring.datasource.url=jdbc:mysql://139.224.14.39:3306/springbootdb?useUnicode=true&characterEncoding=utf8 spring.datasource.username=root -spring.datasource.password=123456 +spring.datasource.password=Hello123!@ spring.datasource.driver-class-name=com.mysql.jdbc.Driver ## Mybatis 配置 @@ -10,7 +10,7 @@ mybatis.mapperLocations=classpath:mapper/*.xml ## Freemarker 配置 ## 文件配置路径 -spring.freemarker.template-loader-path=classpath:/city/ +spring.freemarker.template-loader-path=classpath:/web/ spring.freemarker.cache=false spring.freemarker.charset=UTF-8 spring.freemarker.check-template-location=true