spring security - Grails plugin resources not found when running using run-app -


i have been using spring security core plugin without ui while. have implement interface naturally turned spring security ui plugin grails.

after running project using grails run-app, can hit default controllers of plugin, doesn't seem find resources come spring-security ui. checked .grails\2.0.4\projects\proteus\plugins\spring-security-ui-1.0-rc1 , seems there.

packing , deploying .war file through tomcat works fine. however, run-war has same problem.

does have idea on might causing this? developing issue quite painful.

thank you!

i using grails 2.0.4

application.resources

app.grails.version=2.0.4 app.name=proteus app.servlet.version=2.5 app.version=0.1 plugins.csv=0.3.1 plugins.famfamfam=1.0.1 plugins.mail=1.0.1 plugins.spring-security-core=2.0-rc2 plugins.spring-security-ui=1.0-rc1 

firebug console output when hit http://localhost:8080/proteus/user/

"networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/css/gradient.png" "networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" "networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png" "networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/images/safari-checkbox.png" "networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/css/smoothness/images/ui-icons_222222_256x240.png" "networkerror: 404 not found - http://localhost:8080/proteus/static/plugins/spring-security-ui-1.0-rc1/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png" 

turns out setting in config.groovy. had grails.resources.processing.enabled = false few months ago when having issues adding fonts. hope helps in future!

environments { development {     grails.logging.jul.usebridge = true     grails.resources.processing.enabled = false } production {     grails.logging.jul.usebridge = false     grails.resources.processing.enabled = false     // todo: grails.serverurl = "http://www.changeme.com" } 

}


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

objective c - Greedy NSProgressIndicator Allocation -

how to set an OCR language in Google Drive -