# spring-boot-admin **Repository Path**: sunyuanhang/spring-boot-admin ## Basic Information - **Project Name**: spring-boot-admin - **Description**: SpringBoot项目整合其他Starter的案例展示 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-23 - **Last Updated**: 2022-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1、starter 是一些依赖集合的总称;官方的starter的命名是以spring-boot-starter-*开始的 2、Spring和SpringMVc进行整合的时候会写到扫描我们的包,但是在SpringBoot项目中默认配置的扫描包是在主函数下面的子包都会被扫描到。 3、当我们需要解析xml文件的内容,及原生的配置文件。我们只需要在在配置类上@Configuration上加上注解@ImportResourse("路径"); 4、在实际的开发的过程中,需要将我们经常改动的信息放在文件中进行维护,我们需要对配置信息映射成我们的Java实体类 采用注解@ConfigurationProperties()进行注解