Posts by Tiago Sousa • 1 point
2 posts
-
0
votes1
answer105
viewsA: Hibernate + JPA 5 - Java Web
You informed Update on the property "Hibernate.hbm2ddl.auto" in your persistence. When Hibernate was updating the tables it triggered the error "name is already being used by an existing object".…
-
0
votes3
answers462
viewsA: How to limit a user to only access their own data?
You can limit the display of any content on the page using Thymeleaf’s Spring Security Dialect. Limiting content using roles: <div sec:authorize="hasRole('ROLE_ADMIN')">This content is only…