- 新增 han-note-count 模块及其子模块 han-note-count-api 和 han-note-count-biz - 配置 application.yml 和 bootstrap.yml,支持 Nacos 注册与配置中心 - 添加 MyBatis-Plus、Redis、MySQL 等基础依赖 - 集成日志配置 logback-spring.xml,支持异步输出及多环境配置 - 设置 .gitignore 忽略本地开发配置文件 - 更新 IDEA 编码配置,指定新增模块的字符集为 UTF-8- 在主 pom.xml 中注册新模块 han-note-count
55 lines
1.3 KiB
Plaintext
Executable File
55 lines
1.3 KiB
Plaintext
Executable File
target/
|
|
!.mvn/wrapper/maven-wrapper.jar
|
|
!**/src/main/**/target/
|
|
!**/src/test/**/target/
|
|
.kotlin
|
|
|
|
### IntelliJ IDEA ###
|
|
.idea/modules.xml
|
|
.idea/jarRepositories.xml
|
|
.idea/compiler.xml
|
|
.idea/libraries/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
|
|
### Eclipse ###
|
|
.apt_generated
|
|
.classpath
|
|
.factorypath
|
|
.project
|
|
.settings
|
|
.springBeans
|
|
.sts4-cache
|
|
|
|
### NetBeans ###
|
|
/nbproject/private/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/.nb-gradle/
|
|
build/
|
|
!**/src/main/**/build/
|
|
!**/src/test/**/build/
|
|
|
|
### VS Code ###
|
|
.vscode/
|
|
|
|
### Mac OS ###
|
|
.DS_Store
|
|
/.idea/
|
|
/han-note-auth/src/main/resources/application-dev.yml
|
|
/han-note-auth/src/main/resources/application-prod.yml
|
|
/han-note-auth/logs/
|
|
/logs/
|
|
/han-note-oss/han-note-oss-biz/src/main/resources/application-dev.yml
|
|
/han-note-user/han-note-user-biz/src/main/resources/application-dev.yml
|
|
/han-note-user/han-note-user-biz/logs/
|
|
/han-note-kv/han-note-kv-biz/src/main/resources/application-dev.yml
|
|
/han-note-kv/han-note-kv-biz/src/main/resources/application-prod.yml
|
|
/han-note-kv/han-note-kv-biz/logs/
|
|
/han-note-note/han-note-note-biz/src/main/resources/application-dev.yml
|
|
/han-note-user-relation/han-note-user-relation-biz/src/main/resources/application-dev.yml
|
|
/han-note-user-relation/han-note-user-relation-biz/logs/
|
|
/han-note-count/han-note-count-biz/src/main/resources/application-dev.yml
|