Files
shiroSpringBootLearn/src/main/resources/application.yml
2018-07-06 15:14:36 +08:00

16 lines
458 B
YAML

spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/db_shiroTest?useUnicode=true&characterEncoding=utf-8&useSSL=true
username: trs
password: shiro
mvc:
## 配置jsp页面位置 ##
view:
prefix: /pages/
suffix: .jsp
## 配置mybatis ##
mybatis:
mapper-locations: mapper/*.xml
type-aliases-package: top.fjy8018.shiro.dataobject