Most voted "vraptor" questions
Vraptor is a web MVC framework for agile development with JAVA created in 2003 at IME-USP, currently maintained by Caelum and several developers from other companies.
Learn more…54 questions
Sort by count of
-
0
votes1
answer71
viewsAnnotation @Get does not work in controller
I am trying to customize my url with @Get on Vraptor 4, but it is not recognized, Follow the controller: @Controller public class OlaController { @Inject Result result; @Get("/ola") public void…
-
0
votes1
answer30
viewsSlow vraptor application after upgrading java and Tomcat
I am working on a legacy application and the application to the natural is already a little slow, I believe that by the way it was developed, but after updating the version of java 7 to java 8 and…
-
0
votes0
answers52
viewsProblems with Left Join with Eclipselink - Java
I have a problem with the following query: SELECT * FROM tipo_calibracao t LEFT OUTER JOIN fator_medio f ON (t.id = f.tipo_calibracao AND f.lote = 42) ORDER BY t.id ASC; Java: public…
-
0
votes1
answer341
viewsSelect option from c:foreach | JSP - JSTL
Goodnight, I need help with a JSTL code. I need to select an option listed by a c:foreach and send it to my Contoller. This data comes from the database. To better understand the logic, I have in…