gpt4 book ai didi

java - 是否可以在同一个项目中使用 jersey 和 java websockets (ServerEndpoint)

转载 作者:行者123 更新时间:2023-11-29 04:41:30 26 4
gpt4 key购买 nike

当我使用 jersey 开发一个 rest api 应用程序时,我发现我需要为特定的业务逻辑片段实现一个 websocket 端点。

我在我的项目中使用maven,所以我添加了javax:javaee-api依赖,但是当我输入服务器端点注释(@ServerEndpoint)时,它无法解析。我尝试手动导入它(导入 javax.websocket.*),我看到在 javax 包中没有 websocket 子包,只有 ws、xml、swing、validation 等。我尝试添加 javax.websocket:javax.websocket-api 作为依赖项而不是整个 javaee-api,但我得到了相同的结果。

我在网上和 stackoverflow 上进行了搜索,我发现这个问题 ( Integrating JaxRS REST service with WebSockets ) 与我的相似,但仍然没有关于 websockets 的答案。问这个问题的人使用 jersey 的 SSE(服务器发送事件)解决了他的问题。

我的问题是(如标题所述):是否可以在同一个项目中使用 jersey 和 java websockets,或者我需要创建一个单独的项目并使用引用或某种定制的代理类。

应 Paul Wasilewski 的要求,我在下面附加了我的 pom.xml。如您所见,我在 pom 中添加了 javaee-api 依赖项,但未在外部库中下载(我使用 IntelliJ)。我创建了新的(干净的)maven 项目并添加了相同的依赖项。在这个新项目中,完美下载了 javaee-api 工件,我可以访问 javax.websocket 命名空间。

我问这个问题是因为我认为 jersey 与 javaee-api 工件存在一些依赖冲突。

<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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>edu.finki.misw.busline</groupId>
<artifactId>busline</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>busline</name>

<build>
<finalName>busline</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
</dependency>

</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<!-- uncomment this to get JSON support
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
</dependency>
-->
</dependencies>
<properties>
<jersey.version>2.23.2</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

最佳答案

当然你可以在同一个项目中使用websocketrs服务。

要向您的 Maven 项目添加 websocket 支持,请将以下依赖项添加到您的 pom

 <dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>

关于java - 是否可以在同一个项目中使用 jersey 和 java websockets (ServerEndpoint),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39039436/

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