Posts by Henrique Schmitt • 26 points
6 posts
-
0
votes1
answer1029
viewsA: Thymeleaf - Submit from inside information <table>
I was able to send the information this way: <form id="form1" th:action="@{/products}" th:object="${store}" method="post" th:method="POST" > <div> <input th:field="*{nome}"…
-
0
votes1
answer1029
viewsQ: Thymeleaf - Submit from inside information <table>
It is possible to give information ubmit from within a using Thymeleaf? Example: <form method="post" th:action="@{/receive}" th:object="${objeto}" > <input type="text"…
-
0
votes3
answers808
viewsA: Spring MVC Enum
I have a Type Enum that I use the form below. Detail that in the entity class, I note the attribute with @Convert(convert = Typopessoaconverter), thus: @Convert(converter = TipoPessoaConverter)…
-
0
votes2
answers1177
viewsA: Spring MVC + Spring Date Pagination
When you use Pageable in Spring Data, you pass the amount of results you want to return per page, I believe your frontend problem is solved with your paging by returning the same number of records…
-
1
votes0
answers98
viewsQ: Modelling Object Change with Ajax
@GetMapping("/cadastrarProduto") public ModelAndView cadastrarProduto() { modelAndView = new ModelAndView("pages/index"); addObject("produtoEntity", new ProdutoEntity()); modelAndView; } It is…
-
0
votes0
answers392
viewsQ: Use of the p:tabview component of Primefaces
I’m using the p:tabview component of Primefaces: <p:tabView dynamic="true" id="tab_view"> <c:forEach items="#{tabbedView.listOfTabs}" var="listOfTabs"> <p:tab…