0

我有一个 .jsp 文件和一个 .java 文件。我尝试使用注释,但两个文件似乎没有连接。

这是Java代码

@WebServlet("/WEB-INF/JSP/restaurant.htm")
public class restaurant extends HttpServlet{
private static final long serialVersionUID = 1L;
private static final String VIEW = "/WEB-INF/JSP/restaurant.jsp";
private RestaurantService restaurantService = new RestaurantService();


protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    List<Restaurant> restaurants = restaurantService.findAll();
    request.setAttribute("restaurants", restaurants);

    request.getRequestDispatcher(VIEW).forward(request, response);
}

这是我的 JSP 代码

<%@page contentType="text/html" pageEncoding="UTF-8" session="false"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<c:set var="contextPath" value="${pageContext.servletContext.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Selecteer uw restaurant</title>
</head>
<body>
<h1>Selecteer uw restaurant</h1>

<c:forEach var="restaurant" items="${restaurants}">
    <c:url value="/gerechten" var="restaurantURL">
        <c:param name="rest">${restuarant.restaurantId}</c:param>
    </c:url>
    <a href="restaurantURL"> <img alt="${restaurant.naam}"
        src="${restaurant.image}"> <br /> ${restaurant.naam}
    </a><br/><br/>
</c:forEach>
</body>
</html>

它只有几行,但即使这样也行不通。我是否使用 web.xml 如果是,我该如何使用它?

提前致谢!

4

1 回答 1

0

使用 Servlet 3.0,您不再需要 Web 描述符(某些配置除外)。使用@WebServlet注释,您基本上是在替换<servlet>and<servlet-mapping>元素。

@WebServlet注释的默认属性是value持有的属性

servlet 的 URL 模式

现在,您的 url 模式是/WEB-INF/JSP/restaurant.htm. 所以你可以访问你的应用程序(假设本地主机,端口 8080)

http://localhost:8080/context/WEB-INF/JSP/restaurant.htm
                             ^ start of your url pattern

我认为这不是你想要的。所以修改@WebServlet value属性以使用你想用来访问你的 servlet 的 url。

于 2013-09-20T14:48:42.103 回答