Browse Source

Upgrade mysql version to 5.1.35(old 5.1.6), update some comment issues

0.4-beta
Li Shengzhao 9 years ago
parent
commit
175863c75c
  1. 8
      others/database/initial_db.ddl
  2. 2
      pom.xml
  3. 4
      src/main/resources/spring-oauth-server.properties
  4. 4
      src/test/resources/test.properties

8
others/database/initial_db.ddl

@ -1,13 +1,13 @@
-- ###############
-- create MySQL database , if need create, cancel the comment
-- ###############
-- create database if not exists spring_oauth default character set utf8;
-- use spring_oauth set default character = utf8;
-- create database if not exists oauth2 default character set utf8;
-- use oauth2 set default character = utf8;
-- ###############
-- grant privileges to spring_oauth/spring_oauth
-- grant privileges to oauth2/oauth2
-- ###############
-- GRANT ALL PRIVILEGES ON spring_oauth.* TO spring_oauth@localhost IDENTIFIED BY "spring_oauth";
-- GRANT ALL PRIVILEGES ON oauth2.* TO oauth2@localhost IDENTIFIED BY "oauth2";
-- ###############
-- Domain: User

2
pom.xml

@ -82,7 +82,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
<version>5.1.35</version>
</dependency>
</dependencies>

4
src/main/resources/spring-oauth-server.properties

@ -4,5 +4,5 @@ jdbc.driverClassName=com.mysql.jdbc.Driver
# localhost
############
jdbc.url=jdbc:mysql://localhost:3306/oauth2?autoReconnect=true&autoReconnectForPools=true&useUnicode=true&characterEncoding=utf8
jdbc.username=honyee
jdbc.password=honyee
jdbc.username=andaily
jdbc.password=andaily

4
src/test/resources/test.properties

@ -4,5 +4,5 @@ jdbc.driverClassName=com.mysql.jdbc.Driver
# localhost
############
jdbc.url=jdbc:mysql://localhost:3306/oauth2_test?autoReconnect=true&autoReconnectForPools=true&useUnicode=true&characterEncoding=utf8
jdbc.username=wdcy
jdbc.password=wdcy
jdbc.username=andaily
jdbc.password=andaily
Loading…
Cancel
Save