Vaadin CDI hides static resources from webapp

Hi,

I’ve been struggling with a small problem lately. When I use Vaadin CDI annotations to map servlets like : @CDIUI(“app”)
The default static resources in webapp folder are no longer accessible. I need those to be accessible and not wrapped by Vaadin containers, because they are read by another program that needs plain text coming back from those URLs. So I need a certain jsp accessible from /myapp/status.jsp. I could write a servlet, that maps the /status.jsp and just returns the required information, but I would like to avoid that and just return the contents of the file. When the annotations are removed, the files become available once again. (Using tomEE, but as far as I know, the behaviour is pretty much same on the Glassfish 3.1.1)