如何在spring mvc中没有注释的控制器中注入bean

时间:2017-02-03 11:14:04

标签: spring-mvc spring-ioc

我正在开发spring mvc web应用程序。我想在控制器或服务类中注入一个bean类,但我不想使用任何类型的注释。

1 个答案:

答案 0 :(得分:1)

在appContext.xml或bean配置文件中定义bean

<bean id="mybean" class="MyClass"></bean>

使用ApplicationContext接口在控制器中调用bean:

ApplicationContext context = new FileSystemXmlApplicationContext("appContext.xml");

MyClass mybean= applicationContext.getBean("mybean");