课程
/后端开发
/Java
/JAVA遇见HTML——JSP篇
包导入了,为什么显示 cannot be resolved to a type
2016-05-22
源自:JAVA遇见HTML——JSP篇 5-4
正在回答
上面是错误提示是“Users类”不是一个类型,即Users类不存在;错的地方是import导入的包下的包下的,
把import="com.po.Users.*"改为import="com.po.Users"
慕斯卡4637234 提问者
我也遇到过,原因应该是因为eclipse没能自动编译源代码到build/classes(或其他classes目录),导致User类型找不到。
解决方法-->Project / Clean/重启服务器 ,解决~~。
慕勒6488227
别忘记重启服务器
我也出现了这个错误,解决的方法是把Users.java在java环境下编译一遍生成User.class文件以后再执行index.jsp这样就能找到Users这个类了。
励志敏
去掉Users后面的那个点
举报
Java Web入门级教程JSP,带你轻松的学习JSP基础知识
9 回答Users cannot be resolved to a type这个怎么办?
2 回答JspWrite cannot be resolved to a type
2 回答Date cannot be resolved to a type
2 回答JspWriter cannot be resolved to a type
1 回答cSiimpleDateFormat cannot be resolved to a type