Default Spring Boot Error Page
Page: http://www.rrkf.com/serv/request
Cause:
org.springframework.jdbc.UncategorizedSQLException:
### Error querying database. Cause: java.sql.SQLException: Error writing file '/tmp/MYMMWIKY' (Errcode: 28)
### The error may exist in file [/home/renren/apache-tomcat-8.5.41/webapps/ROOT/WEB-INF/classes/com/vps/rrkf/serv/sqlmap/AppFdRrTaskMapper.xml]
### The error may involve com.vps.rrkf.serv.persistence.AppFdRrTaskMapper.selectList-Inline
### The error occurred while setting parameters
### SQL: select a.id,a.dateCreated, a.dateModified, c_taskId, c_budget, c_status, ifnull(c_postDate,'') as c_postDate, c_tag, ifnull(c_submitDate,'') as c_submitDate, a.c_approver as c_approver, c_publishStatus, a.c_attachment, c_taskName, c_postUser_id, a.c_country, a.c_city, ifnull(a.c_bidPrice,'') as c_bidPrice, c_periodPlan, a.c_category, a.c_description, a.c_province, c_approveDate, c_tradeMode, c_deadline, c_expiryDate, a.c_type, c_invoice, c_certificated, c_budgetRange, c_publicContact, a.c_enterprise, a.c_mobilePhone,c_attachDownload, c_targetDate, b.c_username,c.c_category,d.c_type,e.c_period,ifnull(f.c_budgetFrom,'') as c_budgetFrom,ifnull(f.c_budgetTo,'') as c_budgetTo from app_fd_rr_task a left join app_fd_rr_user b on a.c_postUser_id=b.id left join app_fd_rr_task_category c on a.c_category=c.id left join app_fd_rr_task_type d on a.c_type=d.id left join app_fd_rr_task_period_opt e on a.c_periodPlan=e.id left join app_fd_rr_task_budget_opt f on a.c_budgetRange=f.id where (a.c_status between 1 and 5 or a.c_status =7 ) and c_publishStatus='1' and c.c_category like '%%' and ( ((f.c_budgetFrom>=0 and 1000000000>=f.c_budgetTo) or a.c_budget between 0 and 1000000000) ) order by a.c_postDate desc
### Cause: java.sql.SQLException: Error writing file '/tmp/MYMMWIKY' (Errcode: 28)
; uncategorized SQLException for SQL []; SQL state [HY000]; error code [3]; Error writing file '/tmp/MYMMWIKY' (Errcode: 28); nested exception is java.sql.SQLException: Error writing file '/tmp/MYMMWIKY' (Errcode: 28)
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
)