我必须把我的jsp文件放在SpringBoot中?

时间:2017-07-06 10:29:42

标签: spring file spring-boot

我正在写信给你,因为我不知道我必须把我的JSP文件放在SpringBoot应用程序中..

A screen of my application's files

提前感谢您的回复, 诺曼。

PS:对不起我在帖子开头不能说你好,它总是被删除..

2 个答案:

答案 0 :(得分:1)

您应该将文件设置为Info.plist(或src/main/resources/staticsrc/main/resources/public)。所有这些都是由Spring Boot autoconfig注册的。

此外,您应该将以下属性添加到src/main/resources/resources

application.properties

答案 1 :(得分:0)

它的esey在春天添加jsp文件 以下步骤对此非常重要: - 在src / main中创建名为webapp的文件夹 - 在其中创建名为WEB-INF的文件夹 - 将这些行添加到您的pom文件

    <!-- Spring MVC framework -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <!-- JSTL -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
        <version>${jstl.version}</version>
    </dependency>

    <!-- for compile only, your container should have this -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>${servletapi.version}</version>
        <scope>provided</scope>
    </dependency>

</dependencies>
  • 创建mvc-dispatcher-servlet.xml
  • 创建web.xml文件

您可以访问URl了解有关步骤press here

的更多详细信息