public void configHandler(Handlers me) {
me.add(new ContextPathHandler("contextPath"));
DruidStatViewHandler dvh = new DruidStatViewHandler("/druid");
me.add(dvh);
}
访问localhost:8081/yz/druid 重定向到 localhost:8081/druid/index.html
而正确的路径应该是localhost:8081/yz/druid/index.html。我该怎么做才能定向到正确页面 呢?
new DruidStatViewHandler("/yz/druid");
当然,中间这个 yz 值,你可以想办法动态去获取,然后在 new new DruidStatViewHandler 这个对象时动态指定,像下面这样:
new DruidStatViewHandler(contextPath + "/druid");