Posts by Pedro Pazello • 88 points
4 posts
-
0
votes1
answer605
viewsA: Value sent to JSP via Spring Model does not appear
I solved the issue of EL installing and using tomcat8, in addition I changed the version of the Servlets to 3.0 as explained in this post : https://stackoverflow.com/a/22353228/3313597…
-
1
votes1
answer605
viewsQ: Value sent to JSP via Spring Model does not appear
I’m developing a project using Maven, Spring framework(mvc module), and database searches through JDBC. I have the following code in my controller: @RequestMapping("/authors/edit") public String…
-
5
votes1
answer3767
viewsQ: dynamic path out of context in Servlet
To get the dynamic path within the project is easy, just run the code : String path = this.getServletContext().getRealPath(""); Here is returned:…
-
1
votes1
answer5101
viewsA: Login with Java Mysql levels
You can set the attribute in the user class profile. When the user creates an account, they will choose between the admin profile, or employee, for example, so they will be registered with that…