下面是我的servlet.xml。我需要添加以下节点
<bean id="myController2"class="com.restcontrollers.MyController2"></bean>
在运行时到这个xml。 这可能吗?如果是,怎么样?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.restcontrollers"/>
<bean id="myController1"class="com.restcontrollers.MyController1">
</bean>
<mvc:annotation-driven />
</beans>
任何形式的帮助将不胜感激。 提前谢谢。
答案 0 :(得分:0)
您有三种选择:
选项1: 如果可以在bean定义中配置bean,并且可以在第一次请求时在运行时完成实例化,则可以使用lazy-init属性创建myController2:
<bean id="myController2" class="com.restcontrollers.MyController2" lazy-init="true"></bean>
您可以找到有关它的更多详细信息here。
选项2: 通过使用Spring AOP @Configurable注释,该注释将类标记为符合Spring驱动配置(类似于使用'new'运算符实例化的对象)。
@Configurable
public class MyController2 {
...
}
并指定此
<context:spring-configured/>
在servlet.xml中。 您可以在here找到有关此弹簧的更多信息。
选项3: 在要调用新myController2的类中: 访问applicationContext并将bean创建为:
ApplicationContext ctx = new ClassPathXmlApplicationContext("servlet.xml");
MyController2 myController2 = new MyController2();
ctx.getAutowireCapableBeanFactory().autowireBeanProperties(myController2, AutowireCapableBeanFactory.AUTOWIRE_BY_TYPE, true);