본문 바로가기

전체 글155

[Eclipse, STS] jspService exceeding the 65535 bytes limit 졸업하고 바쁘게 살다가다시 자바 웹 개발자로 일중이면서 포스팅 시작.... The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit STS4 환경에서 Tomcat 서버 실행은 정상적으로 이루어지고 웹 접속해보려고 하니까 65535 bytes limit 에러가 뜬 상황 해결 방법 : web.xml 파일 수정해주면 됩니다  이 경로에 있는 web.xml 수정  jsp org.apache.jasper.servlet.JspServlet mappedfile false 3 mappedfile 부분 추가해주고 서버 재시작하면 정상.. 2024. 6. 19.
[Windows] 윈도우 프로세스 이름 검색 후 죽이기 windows > cmd 에서 프로세스 검색 프로세스 이름을 알고 pid 나 포트 모를 경우 tasklist 만 입력 후 프로세스 이름으로 pid 검색 프로세스를 찾았다면 해당 피드로 프로세스 죽이기 예를 들어 애니데스크 오류로 프로세스 종료가 안될 경우 애니데스크 프로세스의 pid 가 4084 임을 확인 taskkill /f /pid 4084 taskkill /f /pid 'pid번호' 그럼 죽이기 가능 2024. 4. 11.
[Java] 점수 3개에 대한 합계, 평균, 등급, 석차 처리후 정렬 import java.util.Scanner; public class Main { public static void main(String[] args){ String Name[] = {"김승종", "박상근", "신동인", "권승혁", "허윤서", "정류", "홍기태", "박현진", "김재호", "박세훈"}; String SID[] = {"2019E7028", "2019E7029", "2019E7030", "2020E7028", "2020E7029", "2020E7030", "2021E7028", "2021E7030", "2022E7028", "2022E7030"}; double Req_course[] = {3.5, 4.0, 3.4, 3.7, 4.1, 2.5, 1.9, 2.4, 2.7, 3.6}; doub.. 2023. 10. 28.
[Java] 핸드폰 번호에 사용한 숫자 개수 구하기 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); System.out.print("전화번호 : "); String str = scan.nextLine(); str = str.replace("-", ""); int[] numArr = new int[11]; int[] counter = new int[11]; for(int i=0; i 2023. 10. 27.