전체 글 10

jakarta.servlet.Filter is in unnamed module of loader java.net.URLClassLoader

5월 31, 2022 3:07:00 오전 org.apache.catalina.core.StandardContext filterStartSEVERE: 필터 [encodingFilter]을(를) 시작하는 중 오류 발생java.lang.ClassCastException: class org.springframework.web.filter.CharacterEncodingFilter cannot be cast to class jakarta.servlet.Filter (org.springframework.web.filter.CharacterEncodingFilter is in unnamed module of loader org.apache.catalina.loader.ParallelWebappClassLoader @..

카테고리 없음 2024.12.16

윈도우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

심각: 필터 [springSecurityFilterChain]을(를) 시작하는 중 오류 발생

1.ERROR StatusLogger No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 2.심각: 필터 [springSecurityFilt..

오류모음 2022.10.10