我发现对我的问题的核心问题有很多贡献,但没有足够的解决方案。
我构建了一个基于几个 HTML 页面的 Java EE Web 应用程序。这些由以下 styles.css 格式化:
* {
font-family: sans-serif;
padding: 9px;
color: gray;
}
body > header {
background-image: url("../img/tau.jpg");
border-radius: 10px;
box-shadow: 5px 5px 9px gray;
}
a {
color: white;
text-decoration: none;
}
a:hover, h1.title {
color: white;
text-shadow: 0 0 10px white, 0 0 20px white;
}
每当我现在在本地 Glassfish Appserver 上部署应用程序时,都会抛出 404。HTML 页面位于根目录中,图像位于 /img 子目录中,styles.css 位于子目录 /css 中。
不幸的是,我还没有找到解决这个简单问题的方法。有人有想法吗?