I have the following structure in my java webapp
-- main -- java -- resources -- lib -- css -- style.css -- webapp
You need to put assets that are to be delivered to the client under your webapp directory. Otherwise you will need to write a servlet to deliver them.
webapp
You can find all the nitty details in Chapter 10 of the Java Servlet 3.1 Specification.