|
|
|
[
Permlink
| « Hide
]
Dmitry Avdeev - 19 Nov 07 16:04
It is currently supported. Please provide a code snippet.
It doesn't work for me (same as in #7549)
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> <bean id="tournamentMatchManager" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="target"> <bean class="com.apress.springbook.chapter03.DefaultTournamentMatchManager"> <property name="matchDao" ref="matchDao"/> </bean> </property> <property name="proxyInterfaces"> <list> <value>com.apress.springbook.chapter03.TournamentMatchManager</value> </list> </property> <property name="interceptorNames"> <list> <idref bean="textMessageSendingAdvice1"/> </list> </property> </bean> <bean id="matchDao" class="com.apress.springbook.chapter03.JdbcMatchDao"> <property name="dataSource" ref="dataSource"/> </bean> <bean id="textMessageSendingAdvice1" class="com.apress.springbook.chapter03.TextMessageSendingAdvice"> <property name="messageSender"> <bean class="com.apress.springbook.chapter03.MessageSender"/> </property> </bean> </beans> I'm not using my workstation at the moment, but if I remember correctly recent builds only offered completion for <idref local=".."> (perhaps through DTD/XSD editor, using regular XML ID mechanism?).
Taras, there's a slim chance that the beta version of the RELAX NG plugin I sent you had this functionality for completing ID/IDREF values - IDEA itself doesn't offer it (IDEABKL-1052). But I removed this feature because I was scared by the potential performance impact.
|
|||||||||||||||||||||||||||||||