一些minutos前我的Eclipse / WildFly部署停止正常工作,我的部署没有在JAVA CODE中进行更改,
我正在使用这个拦截器来查看我在url中访问的方法
public void intercept(InterceptorStack stack, ControllerMethod method,
Object instance) throws InterceptionException {
//Pega URI Acessada
String uri = request.getRequestURI();
// System.out.println(method);
// System.out.println(method.getMethod());
stack.next(method,instance);
}
}
如果你看,它有//所以必须停止打印,但即使在部署之后,它仍然在控制台中显示被访问的方法,为什么?如果我在.jsp页面中进行更改,它会正常更改,但JAVA不会,
23:06:53,985 INFO [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018565: Replaced deployment "TestProject.war" with deployment "TestProject.war"
答案 0 :(得分:0)
我想类文件没有在eclipse中构建,所以你正在部署旧版本。我猜你错了click the 'Build Automatically' option in the "Project" menu
。Wheneevr这个选项未选中,你的类文件不会自动更新。所以请检查问题