我有一个独立的弹簧项目,我需要用它来启动嵌入式休息服务。 我能够用灰熊启动服务器,我的问题是,当我启动grizzly服务器时,它会创建自己的应用程序上下文。因此,我的父应用程序创建的实例无法通过REST服务访问。
无论如何,除了获取灰色生成的应用程序上下文之外,还是在Grizzly服务器和父应用程序之间共享父应用程序的上下文。
这是我启动灰熊服务器的代码。
public class RemotingServer {
private HttpServer httpServer;
private String host;
private int port;
public RemotingServer(String host, int port) {
this.host = host;
this.port = port;
}
public void init() throws Exception {
URI uri = UriBuilder.fromUri("http://" + host + "/").port(port).build();
ResourceConfig rc = new DefaultResourceConfig();
ConfigurableApplicationContext cac =
new ClassPathXmlApplicationContext("classpath:remoting-context.xml");
IoCComponentProviderFactory factory = new SpringComponentProviderFactory(rc, cac);
httpServer = GrizzlyServerFactory.createHttpServer(uri, rc, factory);
httpServer.start();
}
public void stop() {
httpServer.stop();
}
}
我也尝试将当前上下文设置为cac
的父级。然后我得到了以下例外。
java.lang.IllegalStateException: BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext
感谢。
答案 0 :(得分:0)
试试这个:
ConfigurableApplicationContext cac =
new ClassPathXmlApplicationContext("classpath:remoting-context.xml");
// Have Spring load the context
cac.refresh();
IoCComponentProviderFactory factory = new SpringComponentProviderFactory(rc, cac);