#Spring is there any way to manage HTML resources (css, js) in spring similar to grails-resources plugin?

Grails Example : modules = {
common {
resource url:"css/main.css"
resource url:"js/jquery.js"
}
}
and in html, this tag is specified with module name to load all files.

<r:require module="common"/>

Example of grails resources plugin shown here : http://blog.springsource.org/2011/06...tic-resources/