# (서블릿) 필터란 ? 애노테이션(Annotations)은 Java 언어의 기능으로, 코드에 메타데이터를 추가하여 컴파일러나 프레임워크에게 특정 동작을 하도록 지시할 수 있습니다. 서블릿에서 애노테이션을 사용하면 해당 서블릿을 실행할 때 부가적인 기능을 부여할 수 있습니다. 이것을 필터(Filter)를 통해 조절할 수 있습니다. 예를 들어, 서블릿 애노테이션을 사용하여 특정 URL 패턴과 서블릿 클래스를 연결하면, 해당 URL로 요청이 들어올 때 그에 맞는 서블릿이 실행됩니다. 필터를 사용하면 서블릿 실행 전후에 부가적인 작업을 할 수 있습니다. 이를 통해 로깅, 보안, 데이터 변환 등의 작업을 처리할 수 있습니다. 요약하면: 애노테이션: 서블릿 클래스에 애노테이션을 사용하여 특정 URL 패턴과 서블릿..
* Postman 설치하여 서버에 요청하기 https://www.postman.com/downloads/ Download Postman | Get Started for Free Try Postman for free! Join 25 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster. www.postman.com GET, POST, HEAH 요청을 받음 ! put은 Servlet04에서 구현하지 않았기 때문에 상속받은 HttpServlet 의 service에서 구현하는 service의 doPut을 호출하고 오류 메시지를 Postman에서 출력해준다. 즉, ..
* Web Application 개발 준비 - windows ① Servlet Container 설치 https://tomcat.apache.org/download-90.cgi Apache Tomcat® - Apache Tomcat 9 Software Downloads Welcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which version you need? Specification..