Notice
Recent Posts
Recent Comments
Link
«   2025/12   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Mini

Servlet 진행 도중 화이트 라벨 에러 해결 본문

Java/Spring-MVC

Servlet 진행 도중 화이트 라벨 에러 해결

Mini_96 2024. 8. 25. 21:41

main에 @ServletComponentScan 을 달아주면된다.

@ServletComponentScan //서블릿 직접등록후 사용하겠음.
package hello.servlet;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;

@ServletComponentScan //서블릿 직접등록후 사용하겠음.
@SpringBootApplication
public class ServeltApplication {

    public static void main(String[] args) {
       SpringApplication.run(ServeltApplication.class, args);
    }

}