Posts by Fillipe Duoli • 175 points
4 posts
-
1
votes1
answer1827
viewsQ: Generate PDF report with Jasper Reports and spring
Hello, I have a problem generating a report with Jasper Reports in spring. I did the implementation exactly as stated in method 4 of this explanation: https://stackoverflow.com/a/27532493 When I…
-
2
votes1
answer388
viewsA: Duplicate value in the bank when inserting new users with an already used Role (Spring-Security)
I was able to resolve by changing the user annotation to @Manytomany As explained very well above by Matheus, Onetomany would be if the roles were only one user. For example: Table person and phone,…
-
1
votes1
answer388
viewsQ: Duplicate value in the bank when inserting new users with an already used Role (Spring-Security)
Hello I’m creating a simple web application with Springmvc and Spring Security. I did the User and Roles class as follows: @Entity public class Usuario implements UserDetails { private static final…
-
3
votes1
answer379
viewsQ: How to mount a link in JSP with the value of an input?
You can mount a link(href) or action(form) by taking the value of an input to pass to a @Pathvariable of a method in the controller? My code is next in the controller:…