spring/hibernate/struts2常見異常總結

  • Spring

①ClassNotFoundException: org.aspectj.weaver.reflect.ReflectionWorld$ReflectionWorldException java

缺乏aspectjweaver.jar,該jar包經常使用於spring aop中 web

 

②java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderL  spring

http://blessht.iteye.com/blog/1104450 app

 

③java.lang.NoSuchMethodException: $Proxy7.方法名() less

spring aop中常見,aop的實現是代理,java領域代理有兩種:jdk自帶的針對接口的代碼和cglib針對類的代碼。spring aop默認使用jdk接口代理,某些時候訪問的bean沒有接口故出現以上問題,解決方法:在aop配置中修改代理類型: ssh

 

Xml代碼   收藏代碼
  1. <aop:config proxy-target-class="true">  

 

④ClassNotFoundException javax/mail/MessagingException spa

spring配置javamailsenderimpl時出錯,緣由是缺乏mail.jar這個包,將該jar包放入項目lib中便可 hibernate

 

  • Hibernate

①Unable to locate appropriate constructor on class 代理

指定類找不到對應的構造方法,常出現於hql,確認hql中每一個類型與Hibernate構造方法對應,而且構造方法的每一個參數類型與hbm.xml文件對應 xml

 

②org.hibernate.hql.ast.QuerySyntaxException: unexpected token: ON near line 1

異常發生在HQL上面:select a.name,b.age from TableA a left join TableB b ONa.id=b.id。原來Hibernate不支持ON這種表達式,若是要創建兩表關係就將ON替代爲WHERE便可:

select a.name,b.age from TableA a left join TableB b where a.id=b.id

 

③java.lang.NullPointerException at org.hibernate.dialect.Dialect$3.getReturnType(Dialect.java:125)

異常發生在HQL上:select a.name,sum(b.age) from TableA a left join TableB b where a.id=b.id,異常發生緣由跟下面第④個是同樣的。

④org.hibernate.hql.ast.QuerySyntaxException: Path expected for join! 

異常發生在HQL上:select a.name,count(b.age) from TableA a left join TableB b where a.id=b.id。③和④的異常是同一緣由:就是left join!原來在Hibernate若是兩張表沒有設置one-to-many這樣的映射關係的話,就不能使用join。第③個是由於sum和join同時出現形成的錯誤,第④個是由於有left join形成的。修改方法是將left join用逗號","取代:select a.name,sum(b.age) from TableA a,TableB b where a.id=b.id

相關文章
相關標籤/搜索