Search code examples
tomcatzkserver.xml

Tomcat server inside eclipse 4.3 issues with paths


I am running a tomcat server inside eclipse 4.3 but am having issues with paths on my server. e. g. this link returns a 404, but I'm sure the file is in the correct place (the root of web app)

http://localhost:8081/fooAppName/style.css

in eclipses tomcat server.xml

   <Context docBase="Monitor" path="/fooAppName" reloadable="true" source="org.eclipse.jst.j2ee.server:Monitor"/></Host>

My index.zul file gets run fine though (this is the one that is trying to load the style.css)

Edit:

But the paths work fine in a standalone tomcat deployment.


Solution

  • There are plenty of way to declare the CSS in ZK One way is add to zk.xml

           <desktop-config>
                   <theme-uri>/resource/style/my.css</theme-uri>
           </desktop-config>
    

    And Another way is add in your zul something like this

    <style src="/resource/style/login.css" />