before:
after:
before:
after:
before:
message:[<<this is AOP bean!>>]
after:
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
package com.tuyano.libro.aop; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class App { public static void main(String[] args) { ApplicationContext app = new ClassPathXmlApplicationContext("aopbean.xml"); SampleAopBean bean = (SampleAopBean) app.getBean("sampleAopBean"); String msg = bean.getMessage(); bean.setMessage("<<" + msg + ">>"); bean.printMessage(); } }
<< 前へ | 次へ >> |