5. 讲师管理模块的配置
程序员文章站
2022-03-15 20:54:26
...
1. 讲师管理模块配置
service_edu
1.1 在service下面service_edu模块中创建配置文件
1.2 resources目录下创建文件 application.properties
# 服务端口
server.port=8001
# 服务名
spring.application.name=service-edu
# 环境设置:dev、test、prod
spring.profiles.active=dev
# mysql数据库连接
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://cdb-o6r75r3g.bj.tencentcdb.com:10015/guli?serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=zqw9797XXX
#mybatis日志
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
1.3 或者在resources目录下创建文件 application.yml
#服务端口
server:
port: 8001
spring:
#服务名
application:
name: service-edu
#环境设置:dev test prod
profiles:
active: dev
#mysql数据库连接
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://cdb-o6r75r3g.bj.tencentcdb.com:10015/guli?serverTimezone=GMT%2B8
username: root
password: zqw9797xxx
#返回json全局时间格式
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8
#mubatis日志
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
☆
推荐阅读
-
Winform界面中实现菜单列表的动态个性化配置管理方法
-
SpringBoot 监控管理模块actuator没有权限的问题解决方法
-
详解Python中contextlib上下文管理模块的用法
-
Python使用自带的ConfigParser模块读写ini配置文件
-
Spring Aop之AspectJ注解配置实现日志管理的方法
-
深入Android Browser配置管理的详解
-
详解Python中contextlib上下文管理模块的用法
-
JavaScript模块管理的简单实现方式详解
-
Python使用自带的ConfigParser模块读写ini配置文件
-
Spring Aop之AspectJ注解配置实现日志管理的方法