Posts by Guilherme Pacheco • 36 points
2 posts
-
1
votes1
answer246
viewsA: Spring MVC getJdbcTemplate Insert in Oracle return column value
Using the Jdbctemplate class you should do so: final String INSERT_SQL = "insert into my_test (name) values(?)"; final String name = "Rob"; KeyHolder keyHolder = new GeneratedKeyHolder();…
-
1
votes1
answer262
viewsA: Error While Uploading with Bootstrap fileinput
Error 405 indicates that the service (POST) does not support the method being invoked. In your form you used a variable (${methodName}) for the type of method, it is quite likely that it is not…