# springboot **Repository Path**: li-jinbao/springboot ## Basic Information - **Project Name**: springboot - **Description**: 专业认证评价系统 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-22 - **Last Updated**: 2025-10-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 工程认证项目 ## springboot配置文件 spring boot配置文件分为开发环境和生产环境(部署时采用的配置信息)。 - 开发环境的配置文件为:application-dev.yaml - 生产环境配置文件为:application-pro.xml 如何切换配置:application.yaml中 ```yaml spring: profiles: active: dev #开发模式 #active: pro #生产模式 ``` ## 包结构 - service包 - controller:web接口 - dao包:数据存区 - entity:实体类 - mapper:mybatis接口文件 - config包下为spring boot的配置类 - listener:监听器,也许会使用到