본문 바로가기

JAVA/JAVA-Project

화면구현에 서블릿 적용 - 카테고리 21. 03. 24.

헤더

 

 

protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		req.setAttribute("title", "온라인상담");
		req.getRequestDispatcher("../WEB-INF/jsp/board/write.jsp").forward(req, resp);
	}

- setAttribute가 

글쓰기에 들어갈 부분 

 

.jsp에 <h1>${title}</h1>