有没有办法在Spring应用程序中静态/全局请求ApplicationContext的副本?
假设主类启动并初始化应用程序上下文,是否需要将它通过调用堆栈传递给任何需要它的类,或者有没有办法让类询问先前创建的上下文? (我认为必须是单身?)
答案 0 :(得分:166)
如果需要访问容器的对象是容器中的bean,只需实现BeanFactoryAware或ApplicationContextAware接口。
如果容器外的对象需要访问容器,我使用standard GoF singleton pattern作为弹簧容器。这样,你的应用程序中只有一个单例,其余的都是容器中的单例bean。
答案 1 :(得分:113)
您可以实施ApplicationContextAware
或仅使用@Autowired
:
public class SpringBean {
@Autowired
private ApplicationContext appContext;
}
SpringBean
将注入ApplicationContext
,在此实例化此bean。例如,如果您的Web应用程序具有非常标准的上下文层次结构:
main application context <- (child) MVC context
和SpringBean
在主要上下文中声明,它将注入主要上下文;
否则,如果它在MVC上下文中声明,它将注入MVC上下文。
答案 2 :(得分:38)
这是一个很好的方式(不是我的,原始参考在这里: http://sujitpal.blogspot.com/2007/03/accessing-spring-beans-from-legacy-code.html
我使用过这种方法,但效果很好。基本上它是一个简单的bean,它包含对应用程序上下文的(静态)引用。通过在spring配置中引用它,它已初始化。
看看原始参考,非常清楚。
答案 3 :(得分:18)
我相信你可以使用SingletonBeanFactoryLocator。 beanRefFactory.xml文件将保存实际的applicationContext,它将是这样的:
<bean id="mainContext" class="org.springframework.context.support.ClassPathXmlApplicationContext">
<constructor-arg>
<list>
<value>../applicationContext.xml</value>
</list>
</constructor-arg>
</bean>
从应用程序文本中获取bean的代码将是这样的:
BeanFactoryLocator bfl = SingletonBeanFactoryLocator.getInstance();
BeanFactoryReference bf = bfl.useBeanFactory("mainContext");
SomeService someService = (SomeService) bf.getFactory().getBean("someService");
Spring团队不鼓励使用这个课程和yadayada,但它在我使用它的地方非常适合我。
答案 4 :(得分:11)
在实施任何其他建议之前,请问自己这些问题......
这些问题的答案在某些类型的应用程序(例如Web应用程序)中比在其他应用程序中更容易,但无论如何都值得提出。
访问ApplicationContext确实违反了整个依赖注入原则,但有时你没有太多选择。
答案 5 :(得分:6)
如果您使用Web应用程序,还有另一种方法可以通过使用servletfilter和ThreadLocal来访问应用程序上下文而不使用单例。在过滤器中,您可以使用WebApplicationContextUtils访问应用程序上下文,并在TheadLocal中存储应用程序上下文或所需的bean。
警告:如果您忘记取消设置ThreadLocal,在尝试取消部署应用程序时会遇到令人讨厌的问题!因此,您应该设置它并立即开始尝试取消最终部分中的ThreadLocal。
当然,这仍然使用单例:ThreadLocal。但实际的bean不再需要了。甚至可以是请求范围的,如果在具有EAR中的库的应用程序中有多个WAR,则此解决方案也可以工作。不过,您可能会认为ThreadLocal的使用与使用普通单例一样糟糕。 ; - )
也许Spring已经提供了类似的解决方案?我找不到一个,但我不确定。
答案 6 :(得分:5)
SpringApplicationContext.java
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
/**
* Wrapper to always return a reference to the Spring Application
Context from
* within non-Spring enabled beans. Unlike Spring MVC's
WebApplicationContextUtils
* we do not need a reference to the Servlet context for this. All we need is
* for this bean to be initialized during application startup.
*/
public class SpringApplicationContext implements
ApplicationContextAware {
private static ApplicationContext CONTEXT;
/**
* This method is called from within the ApplicationContext once it is
* done starting up, it will stick a reference to itself into this bean.
* @param context a reference to the ApplicationContext.
*/
public void setApplicationContext(ApplicationContext context) throws BeansException {
CONTEXT = context;
}
/**
* This is about the same as context.getBean("beanName"), except it has its
* own static handle to the Spring context, so calling this method statically
* will give access to the beans by name in the Spring application context.
* As in the context.getBean("beanName") call, the caller must cast to the
* appropriate target class. If the bean does not exist, then a Runtime error
* will be thrown.
* @param beanName the name of the bean to get.
* @return an Object reference to the named bean.
*/
public static Object getBean(String beanName) {
return CONTEXT.getBean(beanName);
}
}
来源:http://sujitpal.blogspot.de/2007/03/accessing-spring-beans-from-legacy-code.html
答案 7 :(得分:4)
看看ContextSingletonBeanFactoryLocator。它提供静态访问器来获取Spring的上下文,假设它们已经以某种方式注册。
它不漂亮,比你想要的更复杂,但它确实有用。
答案 8 :(得分:3)
请注意,通过将当前ApplicationContext
或ApplicationContext
本身中的任何状态存储在静态变量中(例如使用单例模式),如果您使用,您将使测试不稳定且不可预测使用Spring-test。这是因为Spring-test在同一个JVM中缓存并重用应用程序上下文。例如:
@ContextConfiguration({"classpath:foo.xml"})
进行注释。 @ContextConfiguration({"classpath:foo.xml", "classpath:bar.xml})
@ContextConfiguration({"classpath:foo.xml"})
当测试A运行时,会创建ApplicationContext
,并且任何实现ApplicationContextAware
或自动装配ApplicationContext
的bean都可能会写入静态变量。
当测试B运行时,同样的事情发生了,静态变量现在指向测试B的ApplicationContext
当测试C运行时,没有创建bean ,因为来自测试A的TestContext
(此处为ApplicationContext
)被重用。现在你有一个静态变量指向另一个ApplicationContext
而不是当前持有测试bean的那个。
答案 9 :(得分:2)
有很多方法可以在Spring应用程序中获取应用程序上下文。那些在下面:
通过ApplicationContextAware :
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
public class AppContextProvider implements ApplicationContextAware {
private ApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
}
在这里setApplicationContext(ApplicationContext applicationContext)
方法中,您将获得applicationContext
ApplicationContextAware :
任何希望被通知的对象都可以实现的接口 运行于其中的ApplicationContext。实现此接口 例如,当一个对象需要访问一组 合作豆。
通过自动连线:
@Autowired
private ApplicationContext applicationContext;
此处@Autowired
关键字将提供applicationContext。自动连线有一些问题。它将在单元测试期间产生问题。
答案 10 :(得分:1)
不确定这将有多有用,但是在初始化应用程序时也可以获取上下文。即使在@Autowire
之前,这也是您最快可以获得上下文的方法。
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
private static ApplicationContext context;
// I believe this only runs during an embedded Tomcat with `mvn spring-boot:run`.
// I don't believe it runs when deploying to Tomcat on AWS.
public static void main(String[] args) {
context = SpringApplication.run(Application.class, args);
DataSource dataSource = context.getBean(javax.sql.DataSource.class);
Logger.getLogger("Application").info("DATASOURCE = " + dataSource);
答案 11 :(得分:0)
我知道这个问题已经回答了,但是我想分享我为检索Spring Context而做的Kotlin代码。
我不是专家,因此我对批评家,评论和建议持开放态度。
https://gist.github.com/edpichler/9e22309a86b97dbd4cb1ffe011aa69dd
package com.company.web.spring
import com.company.jpa.spring.MyBusinessAppConfig
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.context.ApplicationContext
import org.springframework.context.annotation.AnnotationConfigApplicationContext
import org.springframework.context.annotation.ComponentScan
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Import
import org.springframework.stereotype.Component
import org.springframework.web.context.ContextLoader
import org.springframework.web.context.WebApplicationContext
import org.springframework.web.context.support.WebApplicationContextUtils
import javax.servlet.http.HttpServlet
@Configuration
@Import(value = [MyBusinessAppConfig::class])
@ComponentScan(basePackageClasses = [SpringUtils::class])
open class WebAppConfig {
}
/**
*
* Singleton object to create (only if necessary), return and reuse a Spring Application Context.
*
* When you instantiates a class by yourself, spring context does not autowire its properties, but you can wire by yourself.
* This class helps to find a context or create a new one, so you can wire properties inside objects that are not
* created by Spring (e.g.: Servlets, usually created by the web server).
*
* Sometimes a SpringContext is created inside jUnit tests, or in the application server, or just manually. Independent
* where it was created, I recommend you to configure your spring configuration to scan this SpringUtils package, so the 'springAppContext'
* property will be used and autowired at the SpringUtils object the start of your spring context, and you will have just one instance of spring context public available.
*
*Ps: Even if your spring configuration doesn't include the SpringUtils @Component, it will works tto, but it will create a second Spring Context o your application.
*/
@Component
object SpringUtils {
var springAppContext: ApplicationContext? = null
@Autowired
set(value) {
field = value
}
/**
* Tries to find and reuse the Application Spring Context. If none found, creates one and save for reuse.
* @return returns a Spring Context.
*/
fun ctx(): ApplicationContext {
if (springAppContext!= null) {
println("achou")
return springAppContext as ApplicationContext;
}
//springcontext not autowired. Trying to find on the thread...
val webContext = ContextLoader.getCurrentWebApplicationContext()
if (webContext != null) {
springAppContext = webContext;
println("achou no servidor")
return springAppContext as WebApplicationContext;
}
println("nao achou, vai criar")
//None spring context found. Start creating a new one...
val applicationContext = AnnotationConfigApplicationContext ( WebAppConfig::class.java )
//saving the context for reusing next time
springAppContext = applicationContext
return applicationContext
}
/**
* @return a Spring context of the WebApplication.
* @param createNewWhenNotFound when true, creates a new Spring Context to return, when no one found in the ServletContext.
* @param httpServlet the @WebServlet.
*/
fun ctx(httpServlet: HttpServlet, createNewWhenNotFound: Boolean): ApplicationContext {
try {
val webContext = WebApplicationContextUtils.findWebApplicationContext(httpServlet.servletContext)
if (webContext != null) {
return webContext
}
if (createNewWhenNotFound) {
//creates a new one
return ctx()
} else {
throw NullPointerException("Cannot found a Spring Application Context.");
}
}catch (er: IllegalStateException){
if (createNewWhenNotFound) {
//creates a new one
return ctx()
}
throw er;
}
}
}
现在,spring上下文是公开可用的,能够像该Java Servlet上那样独立于上下文调用相同的方法(junit测试,bean,手动实例化的类):
@WebServlet(name = "MyWebHook", value = "/WebHook")
public class MyWebServlet extends HttpServlet {
private MyBean byBean
= SpringUtils.INSTANCE.ctx(this, true).getBean(MyBean.class);
public MyWebServlet() {
}
}
答案 12 :(得分:0)
在Spring bean中进行自动装配,如下所示: @Autowired 私有ApplicationContext appContext;
您将创建applicationcontext对象。
答案 13 :(得分:0)
方法1:您可以通过实现ApplicationContextAware接口来注入ApplicationContext。参考link。
@Component
public class ApplicationContextProvider implements ApplicationContextAware {
private ApplicationContext applicationContext;
public ApplicationContext getApplicationContext() {
return applicationContext;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
}
方法2:在任何Spring托管bean中自动关联应用程序上下文。
@Component
public class SpringBean {
@Autowired
private ApplicationContext appContext;
}
参考link。
答案 14 :(得分:0)
即使您的类不是RestController或Configuration类,即使在添加@Autowire之后,applicationContext对象也将作为null出现。尝试使用下面的方法创建新类,并且运行良好:
@Component
public class SpringContext implements ApplicationContextAware{
private static ApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws
BeansException {
this.applicationContext=applicationContext;
}
}
然后,您可以根据需要在同一个类中实现getter方法,例如通过以下方式获取Implemented类引用:
applicationContext.getBean(String serviceName,Interface.Class)
答案 15 :(得分:0)
我使用一种简单、标准化的方式来允许外部访问我自己的任何单例 Spring Bean。用这个方法,我继续让Spring实例化这个Bean。这就是我所做的:
this
。如果该类没有构造函数,请添加一个默认构造函数以在其中设置变量。这是一个例子:
@Component
public class MyBean {
...
private static MyBean singleton = null;
public MyBean() {
...
singleton = this;
}
...
public void someMethod() {
...
}
...
public static MyBean get() {
return singleton;
}
}
然后我可以在我的代码中的任何地方调用单例 bean 上的 someMethod
,方法是:
MyBean.get().someMethod();
如果您已经在继承您的 ApplicationContext
,您可以直接向其添加此机制。否则,您可以子类化它只是为了做到这一点,或者将此机制添加到任何有权访问 ApplicationContext
的 bean,然后使用它从任何地方获得对 ApplicationContext
的访问权。重要的是,正是这种机制让你进入了Spring环境。