Posts by Higor Senna • 366 points
8 posts
-
4
votes2
answers230
viewsA: Invalid Property 'category.subcategory' of bean class. Error saving user to database
I think what is missing is to make category.subcategories (plural) and not category.subcategory (singular)
-
2
votes1
answer331
viewsA: Doubt in database relationship of an application using spring boot
If I understand your need, follow the 'model'' : SUPPLIERS (1 x 1) CATEGORIES (1 supplier has 1 category) CATEGORIES (n x 1) SUBCATEGORIES (SEVERAL SUBCATEGORIES FOR A CATEGORY)…
-
0
votes4
answers173
viewsA: Error 404 Spring boot Ubuntu
Solved! I went to the site spring.io and created a project with the following settings: -Web -Web Services -JPA -Spring data. worked smoothly. thanks a lot guys.
-
1
votes4
answers173
viewsQ: Error 404 Spring boot Ubuntu
Says Guys, I’m trying to create a Restful application with spring boot here in Ubuntu, however, when I run the application "Run as java application", the server goes up but it seems to me that it…
-
0
votes1
answer34
viewsA: "Help Center" on the website - E-mail reference
You can use the following code: <form action="mailto:[email protected]" method="post" enctype="text/plain"> <input type="text" id="nome" name="nome"> <input type="submit"…
-
4
votes1
answer5600
viewsA: How to list the highest salary among all employee functions?
SELECT funcao from Funcionarios WHERE salario = (select max(salario) from Funcionarios); probably has a better solution than this, but at the moment I can not think of any :D…
sqlanswered Higor Senna 366 -
-1
votes1
answer278
viewsQ: How to access a Managedbean through an external js file?
How do I access a Managed bean jsf through an external javascript file? I am trying to access it as follows: $("#botaoCadastroMaterial").click(function(){ '#{cadastroMaterialController.salvar()}';…
-
1
votes1
answer799
viewsQ: How to create JPA class from an N to N relationship
Good afternoon Guys, in my work of java Web I have two tables where the relationship is Manytomany, so I went to the database, created a third table with the key of the other two, but when it comes…
javaasked Higor Senna 366