今天spring boot程序一直报这个错:org.apache.jasper.JasperException:Unable to compile class for JSP
找了几个小时才发现是因为导了一个依赖包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
和
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> </dependency>有冲突,把第二个依赖删了就好了