2 つの名前空間を定義しました。beans と aop です。
以下に記述したタグを Netbeans にカット アンド ペーストし、beans:beans 内のタグを編集しようとすると、次の動作を観察する必要があります。
<beans:import />
これを入力すると、オートコンプリートが支援し、要素名の後に、属性のリスト (この場合は 1 つだけ) を提案します。
<aspectj-autoproxy />
これを入力すると、オートコンプリートは属性のリストを提案しません (2 つの属性があります: proxy-target-class、expose-proxy)
これは、デフォルトの名前空間の要素の属性に対して発生します。
バグですか?私は何か間違ったことをしていますか?
NB 6.9 と NB 7.0 でテストしました
前もって感謝します
<beans:beans
xmlns:beans ="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
try here
</beans:beans>