I get the following security exception in GAE, anyone know the cause? Google searches are taking me in all different directions.
java.lang.SecurityException: Unable to get members for class org.springframework.web.servlet.view.velocity.VelocityViewResolver
at com.google.appengine.runtime.Request.process-510220b4f73f2116(Request.java)
at java.lang.Class.getDeclaredConstructors(Class.java:302)
...
Here was the problem, the velocity bean definition had an absolute path vs. relative:
Changed to (note the ‘/’ removed in the resourceLoaderPath)
Another little “it works in the local environment but not on production gotcha”.