在动态Web应用程序项目中,调试器没有遇到断点。我在Eclipse工作。有人可以帮帮我吗。 这里的星形代表断点,但没有击中
public String addUser(HashMap hm) {
// function logic
logger.debug("Inside addUSer Method");
String systemUser = getFromHMap(hm, rb.getString("USER_SYSTEMUSER"));
****String userID=getNextId();;
int systemUserInt = Integer.parseInt(systemUser.trim());
int authMethodInt = Integer.parseInt(authMethod.trim());
if (authMethodInt == AUTHMETHOD_UN_PWD) {
password = getFromHMap(hm, rb.getString("USER_PASSWORD"));
}
答案 0 :(得分:2)
检查服务器是否在调试模式下运行。 如果是,那么检查是否从某个地方调用了上述方法。
答案 1 :(得分:2)
您是否在调试模式下运行应用程序?
为此,right click on project > debug as > debug on server
然后它会击中断点。