无法解析jsp,错误的处理器,网上也查了下,发现maven配置的pom中的tomcat-maven插件配置有问题,首先是版本不符合,其次是根本没有tomcat8-maven-plugin,在Maven的中央仓库中根本就没有这个插件:
https://repository.apache.org/content/repositories/snapshots/org/apache/tomcat/maven/
但是在mvnrepository仓库中有tomcat8
http://www.mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat8-maven-plugin/3.0-r1756463
上面的依赖加入到pom中直接报错,最后使用Maven中的<pluginRepositories> ,<pluginRepositories>是用来配置插件地址的,因为maven的所有功能都是使用插件来实现功能的,因此需要从特定的地址下载插件包。