Posts by Thiago Gomes • 65 points
3 posts
-
1
votes1
answer40
viewsQ: Can’t find the index page
PROBLEM When running the project you are not finding the index.jsp. view I am using RESTFUL and WEB in spring boot. ERROR o.s.w.s.r.ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF":…
spring-bootasked Thiago Gomes 65 -
0
votes1
answer1120
viewsQ: Configure Mysql Tiimezone in Spring Boot
PROBLEM How do I set up Mysql Timezone in a project using Spring Boot with Tomcat? ERROR java.sql.SQLException: The server time zone value 'Hora oficial do Brasil' is unrecognized or represents more…
-
4
votes1
answer664
viewsQ: Count with HQL JPA
Problem How do I receive the amount of record from a database table? public Integer quantidadeRegistros() { try { Query query = em.createQuery("SELECT COUNT(*) FROM Categoria cat"); return (Integer)…