Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 webContent/images 上有一个包含图像的文件夹。我只想知道如何在网上提供这个文件夹。
在我的项目中,我只有一个带有注释的 servlet:
@WebServlet(urlPatterns = { "/" }) public class IndexCtrl extends HttpServlet {
每次我尝试获取图像时,此 servlet 都会获得优先权并发送索引页面。如何在网络上提供图像文件夹?我做错了什么?
只是不要将 servlet 映射到/. 这使它成为默认的 servlet,它捕获所有请求。将其映射到它必须处理的 URL(/index.html例如)。
/
/index.html