I’m set up that when I hit the "/" I immediately flip to "/ home", but in this case the logos, styles and js are not loaded. I use bare servlets + maven is connected. Here is my redirect servlet:
@WebServlet("/") public class ServletDispatcher extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.sendRedirect("/home"); } } How to write in servlets correctly so that the folder with logos / resources and js have access?
My structure:
