Enhancement proposal - non-default Spring namespace autosuggest
I'm using IntelliJ 8.1.4 - so please bear over with me if this is no longer a problem.
Having a Spring bean configured so:
<beans:bean id="..." >
<beans:property name="property" value="value" />
</beans:bean>
I then added an instance variable marked final and a constructor to SomeClass - causing IntelliJ to correctly suggest adding a constructor-arg to my bean definition:
<beans:bean id="..." >
<constructor-arg value="" />
<beans:property name="property" value="value" />
</beans:bean>
However, IntelliJ ignores the non-default namespace used for the bean namespace, as this should have been added instead:
<beans:constructor-arg value="" />
If this is still a problem - where do I submit it?
请先登录再写评论。
http://youtrack.jetbrains.net/issues/IDEA
Thanks - I have reported the issue.
Thanks, I've voted for issue you created. It's still a problem in the latest 9.0.2 RC3 release.
I've also entered a related issue: IDEA-54058