Default Spring Boot Error Page
Page: http://rrkf.com/prod/productInfo
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/prod/sqlmap/AppFdRrProductMapper.xml]
### The error may involve com.vps.rrkf.prod.persistence.AppFdRrProductMapper.selectByExampleWithProd-Inline
### The error occurred while setting parameters
### SQL: select id, dateCreated, dateModified , c_tag, c_promoteEnd, c_applicationId, c_discription, c_type, c_priceModel, c_version, c_prodName, c_marketType, c_dependApp, c_approveDate, c_prod_category_id, c_dependPlugin, c_publishDate, c_promotePrice, c_pluginId, c_platform, c_prodIcon, c_screenshot, c_prodDownload, c_status, c_approver, c_submitDate, c_tryLink, c_promoteStart, c_developer_id, c_language, c_offDate, c_regularPrice, c_openDownload, c_pluginType, c_approveComment, c_prodId, c_customerFile, c_publicFile, c_customerFileVer, c_prodDownloadStamp, c_prodDownloadVer, c_publicFileVer, c_publicFileStamp, c_customerFileStamp, c_allowPoint, c_maxPoint ,d.num from app_fd_rr_product left join (select b.c_prod_id, count(*) as num from app_fd_rr_prod_order_item b left join app_fd_rr_prod_order c on c.id=b.c_order_id where c.c_status='1' group by b.c_prod_id) d on app_fd_rr_product.id=d.c_prod_id WHERE ( c_status = ? and c_developer_id = ? ) order by num desc limit 0,3
### 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
)