实现数据库查询用户,获取密码,编写了单元测试类

This commit is contained in:
F嘉阳
2018-01-30 15:47:30 +08:00
commit 91aba6a592
21 changed files with 818 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#开发环境配置文件
server:
servlet:
context-path: /cms
port: 8080
spring:
thymeleaf:
prefix: classpath:/templates/
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/db_imis2?useUnicode=true&characterEncoding=utf-8&useSSL=true
username: imis2
password: 2015imis2
jpa:
hibernate:
ddl-auto: update
show-sql: true
debug: true