Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我们的项目中,需要在将应用程序发布到 Websphere 应用程序服务器时从数据库中加载所有表。
我刚刚在类路径中定义了 applicationContext .. 在发布它时在控制台中显示 applicationContext 我编写了 bean 来检索所有表。但是是否可以在不调用 .getBean 方法的情况下加载 bean
我们使用的是 EJB3 项目而不是 Webproject,所以它没有 web.xml 来调用 applicationContext.xml
提前致谢
这是获取 bean 引用的常用方法。你有什么问题吗?
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); SomeBean someBean = context.getBean(SomeBean.class);