Whitelabel Error Page 404

Whitelabel Error Page 404

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Fri Apr 07 13:02:50 CST 2017
There was an unexpected error (type=Internal Server Error, status=500).
No message available

솔루션:


@SpringBootApplication
@ServletComponentScan
public class SpringbootMybatisDruidApplication {

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

}

참고: @ServletComponentScan

import com.alibaba.druid.support.http.StatViewServlet;
import javax.servlet.annotation.WebServlet;
import javax.servlet.annotation.WebInitParam;
@WebServlet(urlPatterns = "/druid/*",
        initParams={
                @WebInitParam(name="allow",value="127.0.0.1"),// IP  ( , )
                @WebInitParam(name="deny",value="192.168.16.111"),// IP  ( ,deny allow)
                @WebInitParam(name="loginUsername",value="admin"),//  
                @WebInitParam(name="loginPassword",value="378592175"),//  
                @WebInitParam(name="resetEnable",value="false")//  HTML “Reset All” 
        })
public class DruidStatViewServlet extends StatViewServlet {
    private static final long serialVersionUID = 1L;

}

Druid Stat View Servlet이 Stat View Servlet을 계승했습니다.

좋은 웹페이지 즐겨찾기