public void init(ServletConfig config) 和public void init() 的区别
在获取初始化参数那章,自动生成了带有ServletConfig config的init 然后一直运行不出结果,删了以后就可以了。想问表示什么意思呢
public void init(ServletConfig config) throws ServletException {
// TODO Auto-generated method stub
this.setUsername(this.getInitParameter("username"));
this.setPassword(this.getInitParameter("password"));
}
public void init(ServletConfig config) throws ServletException {
// TODO Auto-generated method stub
this.setUsername(this.getInitParameter("username"));
this.setPassword(this.getInitParameter("password"));
}