サイドバーの壁紙
博主头像
tin博主等级

子の曰わく、我れ三人行なえば必ず我が師を得(う)。其の善き者を択びてこれに従う。其の善からざる者にしてこれを改む。

  • 累積執筆 74 記事
  • 累計作成 32 タグ
  • 累計受入 2 コメント

目 次CONTENT

記事目次

application.properties-\docker_boot\src\main\resources

tin
tin
2023-03-17 / 0 コメント / 55 ビュー / 163 文字

application.properties

server.port=6001
# ========================alibaba.druid=====================
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
# 192.168.1.13はMySQLを配置するマシンのIP
spring.datasource.url=jdbc:mysql://192.168.1.13:3306/db2023?useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
spring.datasource.password=123
spring.datasource.druid.test-while-idle=false
# ========================redis=====================
spring.redis.database=0
# 192.168.1.13はredisを配置するマシンのIP
spring.redis.host=192.168.1.13
spring.redis.port=6379
spring.redis.password=123
spring.redis.lettuce.pool.max-active=8
spring.redis.lettuce.pool.max-wait=-1ms
spring.redis.lettuce.pool.max-idle=8
spring.redis.lettuce.pool.min-idle=0
spring.redis.timeout=5000
# ========================mybatis===================
mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.cjh.docker.entities
# ========================swagger=====================
spring.swagger2.enabled=true