gpt4 book ai didi

java - Spring 在普通 Java 程序中注入(inject)依赖项

转载 作者:行者123 更新时间:2023-12-02 08:13:17 24 4
gpt4 key购买 nike

在具有 REST Controller 的经典 Web 应用程序的上下文中,我需要开发一个小型 Java 程序,该程序将使用适当的调度程序作为常规任务进行调用。

项目源码主要有两个类:一个是常见的Spring boot Application,带有一些常见的Spring boot注解(@EnableAutoConfiguration、@componentScan等)

第二个主类是一个带有 static void main 方法的普通 Java 类。由于任务程序将使用标准 Web 应用程序创建的数据,因此我(必须承认,没有考虑太多)在几个类变量上使用了 @Autowired 注释来通过 JPA 存储库访问数据.

直到现在,在运行任务程序时,我在使用第一个存储库时遇到了 NullPointerException。有一秒钟,我很困惑,然后我意识到这个错误是预料之中的,因为Spring 没有发挥它的魔力

我现在的问题是如何让 Spring 在这个普通的 Java 主类上进行依赖注入(inject)?我的猜测是,需要在某个地方放置一个或多个注释,但是在大量的 Spring 注释中,这就像在一堆针袋中找到一根特定的针。

[编辑]@J-Mengelle 的答案是正确的方法:我在启动任务时看到了与启动 Web 应用程序时完全相同的常见控制台消息。

这是我得到的代码(解释如下):

AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
ctx.register(Application.class); // This is the Spring boot application class

InputStream is = Application.class.getClassLoader()
.getResourceAsStream("application.properties"); //$NON-NLS-1$
Properties props = new Properties();
props.load(is);
is.close();

ConfigurableEnvironment environment = new StandardEnvironment();
MutablePropertySources propertySources = environment.getPropertySources();
Map<String, Object> myMap = new HashMap<>();
for (Object key : props.keySet()) {
myMap.put((String) key, props.get(key));
}
propertySources.addFirst(new MapPropertySource("MY_MAP", myMap)); //$NON-NLS-1$

ctx.setEnvironment(environment);
ctx.refresh();

但是,我遇到了第一个异常:

Cannot determine embedded database driver class for database type NONE

这是因为 application.properties 没有被读取并且数据源没有被配置,因此上面的手动读取,我认为这通常是由 Spring boot 处理的。

之后,可能会遇到 Bean 创建异常。我在使用 springfox 时就遇到过这样的异常(exception)。然后,我简单地删除了 Swagger 配置 bean 上的 @EnableSwagger2 注释,从那时起它就顺利进行了,这意味着我可以编写像 actionRepository = ctx.getBean(ActionRepository.class); 这样的指令并具有有效的引用正确注入(inject)到变量中。

最佳答案

类似这样的事情:

public static void main(String[] args) {
ApplicationContext ctx =
new AnnotationConfigApplicationContext(HelloWorldConfig.class);

HelloWorld helloWorld = ctx.getBean(HelloWorld.class);

helloWorld.setMessage("Hello World!");
helloWorld.getMessage();

}

参见http://www.tutorialspoint.com/spring/spring_java_based_configuration.htm

关于java - Spring 在普通 Java 程序中注入(inject)依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38094135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com