Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
319 views
in Technique[技术] by (71.8m points)

autowired - How to set up a spring based java library?

I am trying to create a java library that uses spring. But I am not able to find any resources that shows you how to set up component scan and load all beans when you do not have a main entry point into the application.

question from:https://stackoverflow.com/questions/65904372/how-to-set-up-a-spring-based-java-library

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A common approach used by spring is to define a @EnableXXXX and let the client of your library to enable it by annotating it on their configuration class. Something like :

@Target(ElementType.TYPE)
@Import(FooLibarayConfiguration.class)
@Documented
public @interface EnableFooLibaray{

}
@ComponentScan("xxxxx")
@Configuration
public class FooLibarayConfiguration{

}

And client enables your library by :

@EnableFooLibaray
@Configuration
public class Application{

}

The @Import actually supports a more dynamic way to include the bean settings for your library. You can refer to many existing @EnableXXX provided by spring such as @EnableAsync , @EnableWebSecurity , @EnableTransactionManagement , @EnableCaching etc. for many examples.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...