GET 404-在目录中找不到现有图像

时间:2018-11-22 20:00:54

标签: html css java-ee glassfish java-ee-8

我发现我的问题的核心问题有很多贡献,但没有适当的解决方案。

我构建了一个Java EE Web应用程序,该应用程序基于一些HTML页面。这些格式通过以下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中。

不幸的是,我还没有找到解决这个简单问题的方法。有人有主意吗?

0 个答案:

没有答案