我在eclipse 4.3中运行一个tomcat服务器,但我的服务器上的路径出现问题。即G。此链接返回404,但我确定该文件位于正确的位置(Web应用程序的根目录)
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>
我的index.zul
文件运行正常(这是尝试加载style.css
的文件)
修改
但是这些路径在独立的tomcat部署中运行良好。
答案 0 :(得分:1)
有很多方法可以在ZK中声明CSS一种方式是添加到zk.xml
<desktop-config>
<theme-uri>/resource/style/my.css</theme-uri>
</desktop-config>
另一种方法是在你的zul中添加类似这样的东西
<style src="/resource/style/login.css" />