i\'m new to java and have a strange problem. i create some folder(theme, js, css) in WEB-INF folder and put my files to this folders. in index.jsp i use a css file by following
Why you create theme, js, css
in WEB-INF
Folder? WEB-INF
directory contains metadata about the application. During normal operations, you should not need to modify anything under the WEB-INF directory.
you can create theme, js, css
folder under war
or WebContent
directory directly it will easy to use in your jsp pages.
this link will help you.