У меня есть папка, где находится вёрстка сайта с использованием js, css, html- главный файл.
Я создал servlet, замапил его `
@WebServlet("/")
public class Tets1 extends HttpServlet {
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
getServletContext().getRequestDispatcher("/index2.jsp").forward(req,resp);
}
}
в index2.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<%@ include file="/resources/login-logout/css/style.css" %>
<%@ include file="/resources/login-logout/js/index.js" %>
<%@ include file="/resources/login-logout/scss/style.scss" %>
<%@ include file="/resources/login-logout/index.html" %>
</head>
<body>
</body>
</html>
` у меня HTTP Status 500 – Internal Server Error, помогите мне исправить это.
Основные этапы разработки сайта для стоматологической клиники
Продвижение своими сайтами как стратегия роста и независимости