※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<?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.xsd"> <!-- aop bean... --> <bean id="sampleAopBean" class="com.tuyano.libro.aop.SampleAopBean"> <property name="message" value="this is AOP bean!" /> </bean> <bean id="sampleMethodAdvice" class="com.tuyano.libro.aop.SampleMethodAdvice" /> <bean id="proxyFactoryBean" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="target" ref="sampleAopBean"></property> <property name="interceptorNames"> <list> <value>sampleMethodAdvice</value> </list> </property> </bean> </beans>
<< 前へ | 次へ >> |