翻译这个bean的正确方法是:
<bean id="velocityEngine" class="org.springframework.security.saml.util.VelocityFactory" factory-method="getEngine"/>
从XML到Java-Config(注意 factory-method )?
以下解决方案是否正确?
@Bean
public VelocityEngine veloctyEngine() {
return VelocityFactory.getEngine();
}
根据Spring-philosophy有没有更好的实现?
干杯,V。