Posts by Ger • 605 points
15 posts
-
1
votes1
answer5525
viewsQ: Spring Boot error 404
Hello, I am studying Spring Mvc and Spring Boot and I came across a following problem that so far I could not identify. After executing my main method I get the following message. Whitelabel Error…
-
2
votes4
answers1376
viewsQ: Application with Tomcat and Spring Boot
Hello! I am having following problem in my application. After running the main method just below and enter in the browser the address of my application localhost:9090/restaurantWeb is opening a…
-
2
votes1
answer2148
viewsQ: Spring Boot configuration error: org.springframework.boot.autoconfigure.Orm.jpa.Jpabaseconfiguration.jpaVendorAdapter
Hello! I am getting the following Stacktrace below when I start Tomcat with my web project after making the settings with Spring Boot. After I created the following classes below, I’m having this…
-
2
votes0
answers232
viewsQ: Configuration Template jsp using Apache Tiles with Spring
I did all of the configuration below, but the template structure I created using Tiles is not being presented on the main page along with your CSS. If anyone can help! Tiles-config.xml <?xml…
-
1
votes1
answer407
viewsQ: Css not found html page - Springframework
Hello. I’m having trouble getting the css, js, fonts etc of my project on my pages. I am using Spring, typing the address of the css files in the browser but the system is not able to find the…
-
1
votes1
answer423
viewsA: Redirect jsp page using Springframework
I had to delete all jsp code from my index page and leave only this snippet. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <c:redirect url="/login"/>…
-
5
votes1
answer423
viewsQ: Redirect jsp page using Springframework
Hello! I have the following problem in redirecting the index.jsp page to the.jsp login page, in Tomcat it only appears that this page was not found, ERROR 404. If anyone can help, I’m using and…
-
1
votes2
answers75
viewsA: Unsatisfied dependencies - Springframewok
My problem was a lack of attention with my class to get a Hibernate Session. How was @Repository public abstract class HibernateSession { @Autowired private SessionFactory sessionFactory; @Autowired…
-
2
votes2
answers75
viewsQ: Unsatisfied dependencies - Springframewok
Hello! I am studying Spring and I have the following problem to move up the project in tomcat8. My dependencies are not being injected, but I’m not able to identify what is missing.…
-
6
votes1
answer1333
viewsQ: Change validation behavior in Primefaces components
I have 2 generic templates for crud. The commandButton Template search CRUD.XHTML (Code 2) is with the following logic: (When opening the page, all input fields are disabled, when you click the…
-
1
votes2
answers2211
viewsA: Primefaces p:datatable changing default message "No Records found."?
"Simple "my brother, just insert in your datatable emptyMessage Inside emptyMessage you place the message you want. example <p:dataTable id="table" value="#{bean.list}" var="obj"…
-
3
votes1
answer1333
viewsQ: Conditional validation in Primefaces component
Hello! I have the following problem. I have inputText description which gets disabled by default. When I click the search button, it enables inputText and then instance an object for search. If I do…
-
3
votes1
answer690
views -
19
votes2
answers982
viewsQ: Selectonemenu is not loaded when selecting object for editing
I have a component SelectOneMenu (Primefaces) of cities, which is loaded according to the selected state. My component is with following behavior, right after saving the object and then selecting it…
-
1
votes1
answer621
viewsQ: Update event in "p:commandLink" component does not render
I have a datatable presented within a Dialog primefaces, when I click on commandLink of the line I desire, I want to take that value and render it within a inputText from my screen, but I’m getting…