liwenxuan 2 weeks ago
parent
commit
710b55bbaf
  1. 78
      .gitignore
  2. 3
      logs/info.log

78
.gitignore

@ -0,0 +1,78 @@
# ==========================================
# 1. Java / Maven 构建相关
# ==========================================
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
# 编译生成的字节码
*.class
# 打包生成的文件
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# ==========================================
# 2. Spring Boot / Spring Cloud 特有
# ==========================================
# 日志文件
logs/
*.log
# Spring Boot 可执行 Jar (仅在特定构建模式下生成)
spring-boot-*.log
# 本地配置文件 (通常包含数据库密码、密钥等敏感信息)
application-local.yml
application-local.properties
bootstrap-local.yml
bootstrap-local.properties
config/application-local.yml
# ==========================================
# 3. IntelliJ IDEA 特有
# ==========================================
.idea/
*.iws
*.iml
*.ipr
out/
# 如果你想共享部分 IDEA 配置(比如编码格式),可以取消下面这行的注释
# !.idea/encodings.xml
# !.idea/vcs.xml
# ==========================================
# 4. 操作系统通用
# ==========================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ==========================================
# 5. 其他
# ==========================================
# 临时文件
*.tmp
*.bak
*.swp
*~.nib
# VS Code (如果你偶尔也用的话)
.vscode/

3
logs/info.log

@ -38,3 +38,6 @@
2026-03-12 11:28:40.097 [main] INFO com.lnsoft.workflow.Application - Started Application in 9.266 seconds (JVM running for 9.818)
2026-03-12 11:28:40.100 [main] INFO org.camunda.bpm.engine.jobexecutor - ENGINE-14014 Starting up the JobExecutor[org.camunda.bpm.engine.spring.components.jobexecutor.SpringJobExecutor].
2026-03-12 11:28:40.102 [JobExecutor[org.camunda.bpm.engine.spring.components.jobexecutor.SpringJobExecutor]] INFO org.camunda.bpm.engine.jobexecutor - ENGINE-14018 JobExecutor[org.camunda.bpm.engine.spring.components.jobexecutor.SpringJobExecutor] starting to acquire jobs
2026-03-12 13:04:06.585 [http-nio-8080-exec-2] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-12 13:04:06.586 [http-nio-8080-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-12 13:04:06.596 [http-nio-8080-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 10 ms

Loading…
Cancel
Save