Null return value from advice does not match primitive return type for


org.springframework.web.util.NestedServletException: Request processing failed; nested exception is 
org.springframework.aop.AopInvocationException: Null return value from advice does not match primitive return type for:

public abstract int com.*.VoterDao.todayCountVote(java.util.Date)

下面是我的dao層

@Query("select sum(v.daysNum) from Voter v where v.updateTime>?1")
int todayCountVote(Date date);

應該是自動拆箱的時出現的問題,把int換成 Integer 包裝類就行了,如果還報空指針的錯誤,就加個null判空。

完!

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM