我有一个.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,如何使用?
提前感谢!
答案 0 :(得分:0)
使用Servlet 3.0,您不再需要Web描述符(某些配置除外)。使用@WebServlet
注释,您基本上会替换<servlet>
和<servlet-mapping>
元素。
@WebServlet
注释的默认属性是value
属性,其中包含
servlet的URL模式
目前,您的网址格式为/WEB-INF/JSP/restaurant.htm
。因此,您可以访问您的应用程序(假设localhost,端口8080)
http://localhost:8080/context/WEB-INF/JSP/restaurant.htm
^ start of your url pattern
我认为这不是你想要的。因此,请修改@WebServlet
value
属性以使用您要用来访问servlet的网址。