完全按照视频敲,为什么会报 空指针异常呢?是我哪里遗漏了吗??
在
public void init(ServletConfig config) throws ServletException {
super.init(config);
this.setUsername(this.getInitParameter("username"));
this.setPassword(this.getInitParameter("password"));
}
显示是有异常的
在
public void init(ServletConfig config) throws ServletException {
super.init(config);
this.setUsername(this.getInitParameter("username"));
this.setPassword(this.getInitParameter("password"));
}
显示是有异常的
2016-08-03
举报