I ask this because I get an autowired error on
@Qualifier("loginFlowRegistry")
and
private FlowBuilderServices flowBuilderServices;
I have the following imports (plus others):
import org.springframework.webflow.definition.registry.FlowDefinitionRegistry;
import org.springframework.webflow.engine.builder.support.FlowBuilderServices;
seems if I comment out the Configuration annotation errors go away.
-psv