- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在不使用 Spring Boot 中的嵌入式服务器的情况下将我的 Web 应用程序部署到 Apache Tomcat。我已经按照指南中的所有步骤成功部署了应用程序(我的意思是它在 Tomcat 管理器中找到),但是当我转到 webapp url 时,我得到了 404。
问题是我的 HTML 文件位于 webapps/mywebapp/WEB-INF/classes。当我将 HTML 文件移动到简单的 webapps/mywebapp 时,页面成功加载,但没有我的 javascript 文件或图像文件等资源。使用 spring boot 嵌入式服务器运行应用程序时,webapp 工作正常。这是我的项目结构:
我的 pom.xml :
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.johnnathan.springboot</groupId>
<artifactId>product-store</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>product-store</name>
<description>Product storefront using Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>4.1.3</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.12</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.0.8.RELEASE</version><!--$NO-MVN-MAN-VER$-->
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
通过 Apache Tomcat 部署时解压的 WAR 文件的文件结构(包含在产品商店 (mywebapp) 文件夹中:
+---META-INF
| | MANIFEST.MF
| | war-tracker
| |
| \---maven
| \---io.johnnathan.springboot
| \---product-store
| pom.properties
| pom.xml
|
+---org
| \---springframework
| \---boot
| \---loader
| | ExecutableArchiveLauncher.class
| | JarLauncher.class
| | LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class
| | LaunchedURLClassLoader.class
| | Launcher.class
| | MainMethodRunner.class
| | PropertiesLauncher$1.class
| | PropertiesLauncher$ArchiveEntryFilter.class
| | PropertiesLauncher$PrefixMatchingArchiveFilter.class
| | PropertiesLauncher.class
| | WarLauncher.class
| |
| +---archive
| | Archive$Entry.class
| | Archive$EntryFilter.class
| | Archive.class
| | ExplodedArchive$1.class
| | ExplodedArchive$FileEntry.class
| | ExplodedArchive$FileEntryIterator$EntryComparator.class
| | ExplodedArchive$FileEntryIterator.class
| | ExplodedArchive.class
| | JarFileArchive$EntryIterator.class
| | JarFileArchive$JarFileEntry.class
| | JarFileArchive.class
| |
| +---data
| | RandomAccessData.class
| | RandomAccessDataFile$1.class
| | RandomAccessDataFile$DataInputStream.class
| | RandomAccessDataFile$FileAccess.class
| | RandomAccessDataFile.class
| |
| +---jar
| | AsciiBytes.class
| | Bytes.class
| | CentralDirectoryEndRecord.class
| | CentralDirectoryFileHeader.class
| | CentralDirectoryParser.class
| | CentralDirectoryVisitor.class
| | FileHeader.class
| | Handler.class
| | JarEntry.class
| | JarEntryFilter.class
| | JarFile$1.class
| | JarFile$2.class
| | JarFile$JarFileType.class
| | JarFile.class
| | JarFileEntries$1.class
| | JarFileEntries$EntryIterator.class
| | JarFileEntries.class
| | JarURLConnection$1.class
| | JarURLConnection$JarEntryName.class
| | JarURLConnection.class
| | StringSequence.class
| | ZipInflaterInputStream.class
| |
| \---util
| SystemPropertyUtils.class
|
\---WEB-INF
+---classes
| | application.properties
| |
| +---io
| | \---johnnathan
| | \---springboot
| | | ProductStoreApp.class
| | |
| | +---index
| | | IndexController.class
| | |
| | \---product
| | Product.class
| | ProductController.class
| | ProductDAO$1.class
| | ProductDAO$ProductRowMapper.class
| | ProductDAO.class
| | ProductService.class
| |
| +---static
| | +---css
| | | bootstrap.min.css
| | | custom.css
| | |
| | +---images
| | | | lights.jpg
| | | | mountain.jpg
| | | |
| | | \---svg
| | | house-with-wifi-svgrepo-com.svg
| | |
| | \---js
| | addProduct.js
| | bootstrap.min.js
| | custom.js
| | jquery-3.3.1.js
| |
| \---templates
| addProduct.html
| index.html
| productPage.html
| products.html
|
+---lib
| accessors-smart-1.2.jar
| android-json-0.0.20131108.vaadin1.jar
| asm-5.0.4.jar
| assertj-core-3.9.1.jar
| attoparser-2.0.4.RELEASE.jar
| bootstrap-4.1.3.jar
| byte-buddy-1.7.11.jar
| byte-buddy-agent-1.7.11.jar
| hamcrest-core-1.3.jar
| hamcrest-library-1.3.jar
| HikariCP-2.7.9.jar
| javax.annotation-api-1.3.2.jar
| jquery-3.3.1.jar
| json-path-2.4.0.jar
| json-smart-2.3.jar
| jsonassert-1.5.0.jar
| jul-to-slf4j-1.7.25.jar
| junit-4.12.jar
| log4j-api-2.10.0.jar
| log4j-to-slf4j-2.10.0.jar
| logback-classic-1.2.3.jar
| logback-core-1.2.3.jar
| mockito-core-2.15.0.jar
| mysql-connector-java-8.0.12.jar
| objenesis-2.6.jar
| popper.js-1.14.3.jar
| protobuf-java-2.6.0.jar
| slf4j-api-1.7.25.jar
| snakeyaml-1.19.jar
| spring-aop-5.0.8.RELEASE.jar
| spring-beans-5.0.8.RELEASE.jar
| spring-boot-2.0.4.RELEASE.jar
| spring-boot-autoconfigure-2.0.4.RELEASE.jar
| spring-boot-starter-2.0.4.RELEASE.jar
| spring-boot-starter-jdbc-2.0.4.RELEASE.jar
| spring-boot-starter-logging-2.0.4.RELEASE.jar
| spring-boot-starter-test-2.0.4.RELEASE.jar
| spring-boot-starter-thymeleaf-2.0.4.RELEASE.jar
| spring-boot-test-2.0.4.RELEASE.jar
| spring-boot-test-autoconfigure-2.0.4.RELEASE.jar
| spring-context-5.0.8.RELEASE.jar
| spring-core-5.0.8.RELEASE.jar
| spring-expression-5.0.8.RELEASE.jar
| spring-jcl-5.0.8.RELEASE.jar
| spring-jdbc-5.0.8.RELEASE.jar
| spring-test-5.0.8.RELEASE.jar
| spring-tx-5.0.8.RELEASE.jar
| thymeleaf-3.0.9.RELEASE.jar
| thymeleaf-extras-java8time-3.0.1.RELEASE.jar
| thymeleaf-spring5-3.0.9.RELEASE.jar
| unbescape-1.1.5.RELEASE.jar
| xmlunit-core-2.5.1.jar
|
\---lib-provided
classmate-1.3.4.jar
hibernate-validator-6.0.11.Final.jar
jackson-annotations-2.9.0.jar
jackson-core-2.9.6.jar
jackson-databind-2.9.6.jar
jackson-datatype-jdk8-2.9.6.jar
jackson-datatype-jsr310-2.9.6.jar
jackson-module-parameter-names-2.9.6.jar
javafx.base-11.0.0-SNAPSHOT-linux.jar
javafx.base-11.0.0-SNAPSHOT-mac.jar
javafx.base-11.0.0-SNAPSHOT-win.jar
javafx.base-11.0.0-SNAPSHOT.jar
jboss-logging-3.3.2.Final.jar
spring-boot-starter-json-2.0.4.RELEASE.jar
spring-boot-starter-tomcat-2.0.4.RELEASE.jar
spring-boot-starter-web-2.0.4.RELEASE.jar
spring-web-5.0.8.RELEASE.jar
spring-webmvc-5.0.8.RELEASE.jar
tomcat-embed-core-8.5.32.jar
tomcat-embed-el-8.5.32.jar
tomcat-embed-websocket-8.5.32.jar
validation-api-2.0.1.Final.jar
我是否必须将所有网络资源移动到不同的文件结构?如果是这样,部署为 WAR 时正确的文件结构是什么?
最佳答案
问题出在我的 pom.xml 上。
依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
自带嵌入式服务器,所以我把scope设置为“provided”。但是,此依赖项中还需要其他一些东西才能正确部署为 WAR。所以我将此依赖项更改为:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
关于java - 打包到 Apache Tomcat 的 WAR 时配置 Web 资源的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58056289/
有人告诉我,如果我只有一个“东西”,比如家(不是多个家),我应该在 routes.rb 中使用资源 :home,而不是资源 :home。但是当我查看路由时,POST 函数似乎想要 home#creat
Activity 开始。这些代码框架顺利通过。 // Initialize array adapters. One for already paired devices and //
资源 search-hadoop.com search-hadoop.com索引所有邮件列表,非常适合历史搜索。当你遇到问题时首先在这里搜索,因为很可能有人已经遇到了你的问题。 邮件列表 在A
我是 WPF 的新手,正在努力使用位于单独程序集中的样式。这就是我正在做的:- 我有一个带有\Themes 文件夹的类库项目,其中包含一个“generic.xaml”,它合并了\Themes 内的子文
我正在编写一个使用虚拟树状文件结构的插件。基本上它就像一个包含文件的标准文件系统,区别在于这些文件实际上并不存在于文件系统中的特定位置,而只是 java 对象。 这些当前由使用 SettingProv
如果我在 XAML 中使用以下内容,我会收到错误消息: 错
我正在使用 laravel 资源来获取 api 的数据: return [ 'id' => $this->id, 'unread' =>
我有以下 pom.xml: 4.0.0 mycompany resource-fail 0.0.1-SNAPSHOT BazBat
许多GDI +类都实现IDisposable,但是我不确定何时应该调用Dispose。对于使用new或静态方法(例如Graphics.CreateGraphics)创建的实例来说,这很明显。但是,由属
我正在构建一组 RESTful 资源,其工作方式如下:(我将使用“people”作为示例): 获取/people/{key} - 返回一个人对象 (JSON) GET/people?first_nam
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一个使用 $resource 的简单 Controller : var Regions = $resource('mocks/regions.json'); $scope.regions =
在 Azure 门户中,如何查看不同资源之间的依赖关系。我特别想查看哪些资源正在使用我要删除的存储。 最佳答案 您可以使用应用程序洞察应用程序 map 来执行此操作: 您还可以打开存储帐户的日志记录:
我正在使用 ionic 生成资源(图标和启动画面)。我正在使用 ionic v2.1.0 和 cordova v6.4.0。 到目前为止我一直在使用(它在以前的版本中工作): cordova plat
是否可以使用 Assets 包含子文件夹中的文件? 示例:[base_url]/assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min.css 最佳
我正在阅读一些尝试教授 Android 开发的书。在书中,作者概述了 res/下的一些目录。他提到 res/menu 包含基于 XML 的菜单规范。他还提到了保存“通用文件”的 res/raw。当我创
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
我在服务器上使用 express-resource。在我的 AngularJS Controller 中: var User = $resource('/services/users/:use
因此,每当我运行我的应用程序时,它都会立即崩溃并给出以下错误: No package identifier when getting value for resource number 0x00000
对于我正在创建的(网络)应用程序,我需要使用基本身份验证在我的 UIWebView 中加载页面。 现在设置我使用的授权 header : NSString *result = [NSString st
我是一名优秀的程序员,十分优秀!