24 lines
501 B
YAML
24 lines
501 B
YAML
# Tomcat
|
|
server:
|
|
port: 9010
|
|
# Spring
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://43.142.12.243:3306/lian
|
|
username: root
|
|
password: ytt@123
|
|
main:
|
|
allow-circular-references: true
|
|
application:
|
|
# 应用名称
|
|
name: etl-groovy
|
|
profiles:
|
|
# 环境配置
|
|
active: dev
|
|
mybatis-plus:
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
type-aliases-package: com.etl.groovy.entity
|
|
mapper-locations: classpath:mappers/*xml
|