我書面方式給你,因爲我不知道在哪裏,我必須把我的JSP文件中SpringBoot應用..我在哪裏必須把我的jsp文件放在SpringBoot中?
A screen of my application's files
預先感謝您爲您的答覆, 諾曼。
PS:對不起,我不能在我的文章的開頭說你好,總是被刪除..
我書面方式給你,因爲我不知道在哪裏,我必須把我的JSP文件中SpringBoot應用..我在哪裏必須把我的jsp文件放在SpringBoot中?
A screen of my application's files
預先感謝您爲您的答覆, 諾曼。
PS:對不起,我不能在我的文章的開頭說你好,總是被刪除..
其esey在春季添加JSP文件 以下步驟是針對重要: - 創建於src文件夾/主叫web應用 - 裏面創建它文件夾,名爲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>
,您可以訪問網址爲更多細節步驟press here
謝謝你,我要閱讀這篇文章:) – Noman