目前正在学习使用 Jave EE 进行 Web 开发。我有一个问题。
例如,我使用 JAX RS 创建了一个 java 类,在其中我明确提供了 @Path 注释,以便应用程序现在可以响应这样的请求:@Path("/helloworld") - site.com/helloworld
但是它如何理解如果请求来到site.com,它需要加载index.html,并且没有设置注释?当请求来自 html: 时,加载图像的同样问题。
我应该阅读什么来了解更多关于这个问题的信息?
编辑:我的 web.xml 是
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
</web-app>