두두의 IT/Spring (26) 썸네일형 리스트형 Spring Boot 지원 Interface & Class Model HttpServletResponse (Interface) ServletResponse응답을 보낼 때 HTTP 관련 기능을 제공하도록 인터페이스를 확장하는 역할을 함 HTTP 응답 코드 지정이나 헤더 생성 및 바디 생성을 함 Servlet Container는 HttpServletResponse 객체를 생성하고 서블릿 서비스 메서드(doGet, doPost 등)에 인수로 전달함 Content-Type, 쿠키, Redirect 등 편의 기능도 제공함 response.setStatus(HttpServletResponse.SC_OK); response.setHeader("Content-Type", "text/plain;charset=utf-8"); PrintWriter writer = response... Spring Boot + JSP + IntelliJ 주의사항 [프로젝트 Open시 Root 파악하여 Open] => 프로젝트의 Root는 어떤 폴더인가요? ex) 아래 사진과 같이 2022 폴더 내에 app, web폴더가 있을 시 web 폴더를 기준으로 프로젝트 Open [멀티 모듈? 설정] 1. 로그 에러 2. settings.gradle 프로젝트 절대경로 변경 for (project in rootProject.children) { project.projectDir = file("프로젝트 절대경로/${project.name}/src") } 3. 경로 에러 4. Gradle Reload [Tomcat Server] Run > Edit Configurations Main Module 중 exploded 없는 거 [관리자 설정 이슈 (KOE006)] applicati.. 이전 1 2 3 4 다음