tulang-auto-spring-factories-autoconfigrue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gitee.ygypc</groupId> <artifactId>tulang-auto-spring-factories-autoconfigrue</artifactId> <version>1.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>ygypc-auto</artifactId> <groupId>io.gitee.ygypc</groupId> <version>1.0.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>tulang-auto-spring-factories-autoconfigrue</artifactId> <name>${project.groupId}:${project.artifactId}</name> <url>https://gitee.com/ygypc/ygypc-auto.git</url> <description> 一个自动生成spring.factories文件的小工具,大家只管写实现类 加上@AutoSpringFacotories注解后,自动生成META-INF/spring.factories文件 @AutoSpringFacotories只接收一个参数,就是你实现的接口类就行 如果是配置bean的 JAVA 文件,加上 @AutoSpringConfig 具体怎么使用 可以去tulang-auto-dubbo-example工程中查看,多谢! </description> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Rubens</name> <email>ygypc_spring@foxmail.com</email> <organization>Rubens</organization> <organizationUrl>https://gitee.com/ygypc/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://gitee.com/ygypc/ygypc-auto.git</connection> <developerConnection>scm:git:git@gitee.com:ygypc/ygypc-auto.git</developerConnection> <url>https://gitee.com/ygypc/ygypc-auto.git</url> </scm> <dependencies> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service-annotations</artifactId> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> </dependency> <dependency> <groupId>io.gitee.ygypc</groupId> <artifactId>tulang-base-processor</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> </dependencies> </project>