Posts by ti.sof002 • 41 points
5 posts
-
1
votes2
answers76
viewsA: Strange page after adding Primefaces
I was able to solve the problem just by overriding the configure method of the spring-security Websecurityconfigureradapter class and leaving it so: @Override protected void configure(HttpSecurity…
-
0
votes2
answers76
viewsQ: Strange page after adding Primefaces
After adding Primefaces dependencies the project ignores my page /home.xhtml that is in xml and shows a url /javax.faces.resource/theme.css.xhtml?ln=primefaces-aristo every time I run the project.…
-
1
votes2
answers538
views -
1
votes2
answers526
viewsA: I cannot install Tomcat and do not receive message when accessing localhost:8080
Did you remember to set system variables like JAVA_HOME and JRE_HOME? Tomcat will not work without them. To check go to Tomcat bin folder hold shift right-click, and select Open Command Window here.…
-
1
votes2
answers89
viewsA: Java code causes persistence problem
You must specify more the column that Voce wants to join. For example: @OneToMany(fetch = FetchType.EAGER) @JoinTable(name = "web_usuario_role", joinColumns = { @JoinColumn(name = "id_usuario",…