2025-12-30 03:14:25 +00:00
|
|
|
server:
|
2025-12-30 09:13:33 +00:00
|
|
|
port: 8083
|
2025-12-30 03:14:25 +00:00
|
|
|
|
|
|
|
|
spring:
|
2026-01-04 01:18:51 +00:00
|
|
|
application:
|
|
|
|
|
name: tacit-app-api
|
|
|
|
|
config:
|
|
|
|
|
import: optional:nacos:localhost:8848?namespace=public&group=DEFAULT_GROUP&file-extension=yml
|
|
|
|
|
cloud:
|
|
|
|
|
nacos:
|
|
|
|
|
discovery:
|
|
|
|
|
enabled: true
|
|
|
|
|
server-addr: localhost:8848
|
|
|
|
|
namespace: public
|
2025-12-30 03:14:25 +00:00
|
|
|
datasource:
|
|
|
|
|
driver-class-name: com.oceanbase.jdbc.Driver
|
2026-01-04 01:18:51 +00:00
|
|
|
url: jdbc:oceanbase://localhost:3306/tacit?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
2025-12-30 03:14:25 +00:00
|
|
|
username: root
|
2026-01-04 01:18:51 +00:00
|
|
|
password: 123456
|
2025-12-30 03:14:25 +00:00
|
|
|
|
|
|
|
|
mybatis-plus:
|
|
|
|
|
configuration:
|
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
|
mapper-locations: classpath*:mapper/**/*.xml
|
|
|
|
|
type-aliases-package: com.tacit.app.entity
|
|
|
|
|
|
|
|
|
|
# Swagger Configuration
|
|
|
|
|
springdoc:
|
|
|
|
|
api-docs:
|
|
|
|
|
enabled: true
|
|
|
|
|
path: /v3/api-docs
|
|
|
|
|
swagger-ui:
|
|
|
|
|
enabled: true
|
|
|
|
|
path: /swagger-ui.html
|
|
|
|
|
|
|
|
|
|
# Logging Configuration
|
|
|
|
|
logging:
|
|
|
|
|
level:
|
|
|
|
|
com.tacit.app: debug
|