폴더 채로 import 한 후 실행했을때 다음과 같이 나온다면, Several ports (8005, 8080, 8009) required by Tomcat v8.5 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s). 이유1 : 톰캣서버 경로가 기존과 달라서 프로젝트에 제대로 저장되있지 않음->해결: 프로젝트 우클릭 - properties - java b..
case1. input(text) 1개일 때 자동 서브밋을 그대로 이용. (onkeypress 를 넣지 않음)======================================================== ========================================================= case2. 강제로 input(text) 2개를 만듬. (추천?)========================================================= ==========================================================
이클립스에서 jsp파일 실행시켰을 때 Unable to compile class for JSP: 라는 exception 메시지가 뜬다면 [ jsp파일 안에서 import 시킨 ~~~.java 를 톰캣서버가 제대로 컴파일하지 못해 발생하는 듯...] 해결방법 : 이클립스 메뉴 - project - Clean 실행 이클립스 하단 servers - tomcat server at localhost 마우스 우클릭 - Clean 실행
============================================== ============================================================= onsubmit : form 태그 안에서 form전송을 하기 전에 입력된 데이터의 유효성을 체크하기 위해 사용하는 이벤트. onsubmit='return false' 이면 do nothing in submit. ---------------------------------------------------------------------------------------------------- input type=submit 클릭시 submit을 진행하는데,onsubmit="return false" 있으면 진행하지 않..