Java (21) 썸네일형 리스트형 어노테이션을 이용한 서블릿 매핑 web.xml Nana.java package com.newlectrue.web; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet("/hello2") public class Nana extends HttpServlet { @Override protecte.. web.xml을 이용한 서블릿 매핑 web.xml na com.newlectrue.web.Nana na /hello Welcome to Tomcat Welcome to Tomcat Nana.java package com.newlectrue.web; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class Nana extends HttpServlet { @Override pr.. 이클립스 자바 웹 서버 URL에 프로젝트 이름 없애기 https://youtu.be/0fASNgpvkOQ?list=PLq8wAnVUcTFVOtENMsujSgtv2TOsMy8zd&t=349 jsp - html request 값 목록 확인하기 Enumeration enu = request.getParameterNames(); String strName; while (enu .hasMoreElements()) { strName= (String) enu .nextElement(); out.print(strName + ":"); out.print(request.getParameter(strName)+" "); } https://kjs87.tistory.com/33 html request 값 목록 확인하기 html 화면끼리 submit을 통해서 form을 전달하면서 작업을 하다 보면 현재 html화면으로 넘어온 form 정보를 이용한 처리가 생각과는 다르게 되어 버리는 경우가 많다. 나는 그럼.. 그래서 html로 넘어온 kjs87.tistory.com 윈도우10 자바 이클립스 설치 https://chocolatey.org/install Installing Chocolatey Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments. chocolatey.org powershell 관리자 권한으로 실행, chocolately 설치 Set-ExecutionPolicy Bypass -Scope Proce.. 이전 1 2 3 다음