springboot使用druid连接池连接Oracle数据库的基本配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
springboot使⽤druid连接池连接Oracle数据库的基本配置#阿⾥连接池配置
#spring.datasource.druid.driver-class-name=oracle.jdbc.driver.OracleDriver #可配可不配,阿⾥的数据库连接池会通过url⾃动搜寻
spring.datasource.druid.url=jdbc:oracle:thin:@localhost:1521:orcl
ername=scott
spring.datasource.druid.password=tiger
spring.datasource.druid.initial-size=5
spring.datasource.druid.max-active=20
spring.datasource.druid.min-idle=10
spring.datasource.druid.max-wait=10
#是否缓存preparedStatement,也就是PSCache。
PSCache对⽀持游标的数据库性能提升巨⼤,⽐如说oracle。
#在mysql5.5以下的版本中没有PSCache功能,建议关闭掉。
#spring.datasource.druid.pool-prepared-statements=true
#配置间隔多久才进⾏⼀次检测,检测需要关闭的空闲连接,单位是毫秒
#spring.datasource.druid.time-between-eviction-runs-millis=60000
#配置⼀个连接在池中最⼩⽣存的时间,单位是毫秒
#spring.datasource.druid.min-evictable-idle-time-millis=300000
#配置扩展插件:监控统计⽤的filter:stat ⽇志⽤的filter:log4j 防御sql注⼊的filter:wall
#spring.datasource.druid.filters=stat,wall
#spring.datasource.druid.filter.stat.log-slow-sql=true
#spring.datasource.druid.filter.stat.slow-sql-millis=2000
#⾃定义配置端⼝号
server.port=8889
#配置项⽬访问时上下⽂路径(项⽬名称)
#server.servlet.context-path=/sbm
#mybatis相关的配置
#实体别名配置配置上后,以后在mapper⽂件中的resultType中原来配置的com.guangming.springboot.entity.Dept就可以直接写成dept
mybatis.type-aliases-package=com.guangming.springboot.entity
#mybatis扫描mapper⽂件的配置
mybatis.mapper-locations=classpath:mapper/*.xml
#静态资源⽬录配置
spring.resources.static-locations=classpath:/templates/,classpath:/static/,classpath:/resources/。