Default Spring Boot Error Page
Page: http://dev.rrkf.com/serv/developerDetail
Cause:
org.springframework.jdbc.UncategorizedSQLException:
### Error querying database. Cause: java.sql.SQLException: Got error 28 from storage engine
### The error may exist in file [/home/renren/apache-tomcat-8.5.41/webapps/ROOT/WEB-INF/classes/com/vps/rrkf/user/sqlmap/AppFdRrProdOrderItemMapper.xml]
### The error may involve com.vps.rrkf.user.persistence.AppFdRrProdOrderItemMapper.selectOrderUnion-Inline
### The error occurred while setting parameters
### SQL: select g.* from ( (select a.c_prod_id as pId,date_format(a.dateCreated,'%Y-%m-%d %T') as pTime,c.c_prodIcon as icon,d.c_username as uName, b.c_status as status ,c.c_prodName as pName,'产品' as type ,b.c_user_id as buyerId,c.c_developer_id as postId, ifnull(d.c_avatar,'') as avatar ,e.c_username as bName,ifnull(e.c_avatar,'') as bavatar from app_fd_rr_prod_order_item a left join app_fd_rr_prod_order b on a.c_order_id=b.id left join app_fd_rr_product c on a.c_prod_id=c.id inner join app_fd_rr_user d on c.c_developer_id=d.id inner join app_fd_rr_user e on b.c_user_id=e.id where b.c_status!='2') union all (select b.id as pId,a.c_winTime as pTime,c.c_avatar as icon,c.c_username as uName, b.c_status as status,b.c_taskName as pName,'服务' as type , a.c_bid_user_id as buyerId,b.c_postUser_id as postId, ifnull(c.c_avatar,'') as avatar ,d.c_username as bName,ifnull(d.c_avatar,'') as bavatar from app_fd_rr_task_bid a inner join app_fd_rr_task b on a.c_task_id=b.id inner join app_fd_rr_user c on b.c_postUser_id=c.id inner join app_fd_rr_user d on a.c_bid_user_id=d.id where a.c_win='true' and b.c_status!='0' and b.c_status!='6') ) g where g.pId is not null and g.postId = ? order by pTime desc
### Cause: java.sql.SQLException: Got error 28 from storage engine
; uncategorized SQLException for SQL []; SQL state [HY000]; error code [1030]; Got error 28 from storage engine; nested exception is java.sql.SQLException: Got error 28 from storage engine
Note: You would never generate a page that displays a Java
exception to an end-user in a real application
You are seeing this error page due to Spring Boot (which returns a
view called "error" in response to uncaught exceptions. Since we are
using Thymeleaf this corresponds to the template
error.html
)