I just started to learn spring boot, and built a new maven project on idea. After configuring Project Structure and tomcat according to the tutorials, I made an error running index.jsp Times:
Error running "index.jsp": Cannot load C:\Users\HXB\.IntelliJIdea2018.2\system\tomcat\index_jsp_test2\conf\web.xml: Error on line 488: The content of elements must consist of well-formed character data or markup.
 idea version ultimate 2018.2.6 jdk version 1.8.0jdk version 9.0.131 
 after following the path to find the web.xml, the 486 to 489 lines of code look like this: 
486    <filter-mapping>
487        <filter-name>httpHeaderSecurity</filter-name>
488        <<url-pattern>/*</url-pattern>
489    </filter-mapping>Picture description
 
