首页上一页 1 下一页尾页 1 条记录 1/1页
《Java Web编程宝典》第13章问题
发表在JavaWeb图书答疑
2012-03-21
是否精华
是
否
版块置顶:
是
否
第335页:
public void before(...){
...
if(arg2 instanceof UserInterface){
UserInterface di = (UserInterface)arg2;
di.getConn();
}
...
上面UserInterface是一个接口,di是接口的实例?di.getConn()好像不行吧?因为接口没有方法定义,接口好像也不能有实例吧?
还有Before通知如何配置在execute()方法(应该是executeInsert方法吧?)前执行?能否将过程说详细点?
谢谢!
public void before(...){
...
if(arg2 instanceof UserInterface){
UserInterface di = (UserInterface)arg2;
di.getConn();
}
...
上面UserInterface是一个接口,di是接口的实例?di.getConn()好像不行吧?因为接口没有方法定义,接口好像也不能有实例吧?
还有Before通知如何配置在execute()方法(应该是executeInsert方法吧?)前执行?能否将过程说详细点?
谢谢!