Springboot notes (3)-View JSP support __JS

Source: Internet
Author: User

First of all, the official recommendation of the use of template technology, such as Freemark, Thymeleaf, of course, can also use JSP, where the simple configuration of the springboot in the JSP support

1. Add support for JSP

        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId> tomcat-embed-jasper</artifactid>
            <version>8.5.6</version>
            <!--  <scope> provided</scope>-->
        </dependency>
        <!--support for Jstl libs-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version >1.2</version>
        </dependency>

2, add the view layer configuration in the configuration file

#---------------------Configure view Layer---------------------
# page Default prefix directory
spring.mvc.view.prefix=/web-inf/jsp/
# response page default suffix
spring.mvc.view.suffix=.jsp
#页面向后台传入日期格式化
spring.mvc.date-format= "Yyyy-mm-dd HH: Mm:ss "

To do this

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.