개발/출근log

DAY2. 스프링부트로 웹소켓 구현 - 오류수정

우당탕카멜레온 2024. 3. 20. 12:14

1. Whitelabel Error Page 오류

controller에서 페이지를 찾지 못함

@Controller
@Log
public class ChatController {

    @GetMapping("/chat")
    public String chatGet(){
        log.info("@ChatController,chatGet()");
        return "chat.html";
    }
}

 

bulid.gradle 에 타임리프 문법을 추가하지 않아서 파일을 읽어오지 못함.

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-websocket'
    compileOnly 'org.projectlombok:lombok'
    annotationProcessor 'org.projectlombok:lombok'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' // thymeleaf
}