gpt4 book ai didi

java - 在 Tomcat 上部署 Spring Boot + WebSocket + Stomp

转载 作者:行者123 更新时间:2023-11-28 23:19:31 24 4
gpt4 key购买 nike

我在为 Tomcat 服务器部署 Spring Boot + WebSocket + Stomp 教程时遇到了一些问题

我正在使用 gradle 来创建具有以下依赖项的 war

"build.gradle"

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.6.RELEASE")
}
}

apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.springframework.boot'

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: '1.5.6.RELEASE'

compile("org.springframework.boot:spring-boot-starter-websocket")

compile("org.webjars:webjars-locator")
compile("org.webjars:sockjs-client:1.0.2")
compile("org.webjars:stomp-websocket:2.3.3")
compile("org.webjars:bootstrap:3.3.7")
compile("org.webjars:jquery:3.1.0")

testCompile("org.springframework.boot:spring-boot-starter-test")
}

基本上我只添加了 spring-boot-starter-tomcat 依赖和 war 和 idea 插件。

代码在这里可用 https://spring.io/guides/gs/messaging-stomp-websocket/

部署后,当我尝试访问 http://localhost:8080/complete/ 时我收到以下错误

“无法加载资源:服务器响应状态为 404(未找到)”

我该怎么做才能使这项工作成功?

谢谢

最佳答案

首先,确保使用正确的上下文路径部署 WAR。您提到的示例代码假设您将代码部署到根路径 - http://localhost:8080

您可以从您的代码中设置上下文路径。看这个answer .

如果上下文的一切都是正确的,您应该查看服务器日志以查找可能阻止部署的错误。

关于java - 在 Tomcat 上部署 Spring Boot + WebSocket + Stomp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45532981/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com