1.TagSupport cannot be resolved to a type
缺少jsp标签相关包
<dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> </dependency>
2.非法字符: 65279
通过选择报错的文件,同时按下Alt+Enter键,在弹出对话框可以看到当前文件编码格式为UTF-8 BOM,先修改为ISO-8859-1,删除特殊字符,再保存为UTF-8
3.问题: java.sql.SQLException: The user specified as a definer ('test_wx'@'%') does not exist
分析:创建视图时使用的是test_wx用户角色,当前程序中数据库jdbc.username.jeecg=root,为root用户,不能使用该视图(权限或其他原因).
解决方法:(1)使用root用户重新建该视图