严重: Servlet.service() for servlet Login_Select threw exception

来源:百度知道 编辑:UC知道 时间:2024/07/02 08:22:28
严重: Servlet.service() for servlet Login_Select threw exception
java.lang.Error: Unresolved compilation problem:
The method connection() is undefined for the type Session

Login_Select 检查你的配置

Servlet.service() for servlet Login_Select threw exception
这一句的意思是:你的Login_Select类中发生异常。
java.lang.Error: Unresolved compilation problem:
这一句的意思是:不能解决的编译错误。
The method connection() is undefined for the type Session
这一句的意思是:你的connection()方法中对Session的类型没有定义。
也就是说你没有获得Session,却调用了他。
解决办法:Session session = request.getSession();
再用session获得和处理数据。