# spring-auto-service-annotations **Repository Path**: dushougudu/spring-auto-service-annotations ## Basic Information - **Project Name**: spring-auto-service-annotations - **Description**: 自动生成META-INF/spring.factories文件 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-03-28 - **Last Updated**: 2021-07-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spring-auto-service-annotations #### 介绍 自动生成META-INF/spring.factories文件 SpringAutoService 为开发人员自动生成META-INF/spring.factories这个元数据 Example package com.starter; import git.oschina.dushougudu.annotation.SpringAutoService; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration @SpringAutoService(EnableAutoConfiguration.class) public class MyStarterAutoConfiguration { // … }