메모모음 4

윈도우PC에서 PORT로 프로그램 찾아 죽이기

netstst -ano | findstr 8005 netstst -ano | findstr LISTEN netstst -an | findstr /c "192.168" netstst -ano | find /c "power" tasklist /svc /FI "PID eq 4" tasklist /svc tasklist @프로세스 강제 종료taskkill /f /pid  WMIC process where name="프로세스명" delete [출처] 윈도우에서 특정 포트(PORT)를 사용 중인 프로세스 찾기|작성자 짱구[출처] https://blog.naver.com/PostView.nhn?blogId=webpioneer&logNo=220677150747[출처] https://blog.naver.com/PostV..

메모모음 2024.12.16

Servlet버전에 따른 web.xml파일의 스키마 헤더

Servlet버전에 따른 web.xml파일의 스키마 헤더* 2.4 부터는 DTD(Document Type Definition)를 사용하지 않고 xsd(XML Schema Definition)로 변경되었네요 Servlet 2.2http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> Servlet 2.3http://java.sun.com/dtd/web-app_2_3.dtd"> Servlet 2.4              xmlns="http://java.sun.com/xml/ns/j2ee"              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"              xsi:schemaLocation="http:/..

메모모음 2024.12.16

maven 설정 - dynamic web module version 4.0

pom.xml 수정     maven.java.net     " target="_blank" rel="noopener">https://maven.java.net/content/repositories/public/" target="_blank" rel="noopener">            true                 false          javax.servlet     javax.servlet-api     4.0.1     provided   web.xml 수정xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://..

메모모음 2023.01.11