我正在开发spring mvc web应用程序。我想在控制器或服务类中注入一个bean类,但我不想使用任何类型的注释。
答案 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");