Java常见异常信息总结

Java常见异常信息总结

1、ClassNotFoundException: oracle.jdbc.oracleDriver
	原因:
		1)注册驱动类的全类名书写有错
		2)没有导入ojdbc.jar
2、SQLException: No suitable driver found for jdbc:orale:thin:@localhost:1521:xe
	原因:URL有错。
3、SQLException: Listener refused the connection with the following error:xxxxx
	原因:URL有错。
4、SQLException: IO 错误: The Network Adapter could not establish the connection
	原因:URL中的IP地址错,或oracle服务有问题。
5、SQLException: IO 错误: Invalid number format for port number
	原因:URL中的port(端口)有问题。
6、SQLException: 标识符无效/表或视图不存在/值过多/列在此处不允许/缺少from .......  ,并且通过异常堆栈信息 定位错误行 ,定位到stm.executeXX(sql)
	原因:SQL语句语法有错。
7、SQLException: ORA-01017: invalid username/password; logon denied
	原因:用户名或密码错误。
8.Tomcat启动时报错:occurred at line xxx行 xxxx列
	解决:检查配置文件的xxx行xxx列是否写错	
9.浏览器访问程序时报405错误
	解决:检查servlet程序的方 法名service是否写错
10.访问程序时 , 浏览器做了下载动作
	解决:检查响应内容的类型是否正确
11.访问程序时,报404或者500错误 ( 找不到资源 )
	解决1:检查配置文件的xxx行xxx列是否写错
	解决2:检查classes里是否部署的是.class文件
	解决3: 检查servlet程序是否正确继承了HttpServlet
	解决4:检查web.xml文件中网名是否以”/” 开头

你可能感兴趣的:(百知教育,异常信息)