当我使用泽西开发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的答案。提出这个问题的人,使用球衣的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>
答案 0 :(得分:3)
当然,您可以在同一个项目中使用websocket
和rs
服务。
要为您的maven项目添加websocket
支持,请将以下依赖项添加到pom
。
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>