通常,Spring webflow 配置从以下位置导入application-context.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<beans .../>
....
<import resource="config/webflow-config.xml" />
</beans>
但是在 spring 3.1 中,可以使用 Java 执行所有配置@Configuration
并摆脱application-context.xml
.
我的 Web 配置有以下内容:
@Configuration
@Import({ MyConfig1.class, MyConfig2.class })
public class WebConfig extends WebMvcConfigurerAdapter {
...
}
是否有可能摆脱webflow-config.xml
使用@Configuration
?如果是怎么办?如果没有,如何让我的 Web 配置包含在内webflow-config.xml
?