You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The @WireOption annotation does not work with Spring 3.1.1.RELEASE and probably with earlier versions. The problem is that the @Autowired annotations in CommandLineBeanPostProcessor do not work because CommandLineBeanPostProcessor is a BeanPostProcessor. See SPR-4935 (https://jira.springsource.org/browse/SPR-4935).
This is easily fixed by removing the @Autowired's and adding autowire="byType" to CommandLineBeanPostProcessor bean definition in spring-cli.context.
Thank you for creating this useful utility.
The text was updated successfully, but these errors were encountered:
The @WireOption annotation does not work with Spring 3.1.1.RELEASE and probably with earlier versions. The problem is that the @Autowired annotations in CommandLineBeanPostProcessor do not work because CommandLineBeanPostProcessor is a BeanPostProcessor. See SPR-4935 (https://jira.springsource.org/browse/SPR-4935).
This is easily fixed by removing the @Autowired's and adding autowire="byType" to CommandLineBeanPostProcessor bean definition in spring-cli.context.
Thank you for creating this useful utility.
The text was updated successfully, but these errors were encountered: