晚上好,
我有一个简单的 websocket 应用程序。如果我使用 asadmin 命令或我的 IDE 将它部署到独立 glassfish 服务器,它运行良好。当我使用 glassfish - embedded时,一切似乎都很好(没有错误消息),但我在应该服务 websocket 的端点处得到 404。
WebSocket connection to 'ws://localhost:8080/test/websocket/zelitomasfds/efdsdfsdf' failed: Error during WebSocket handshake: Unexpected response code: 404
这是代码,应该很简单
/* Imports skipped */
@ServerEndpoint("/websocket/{email}/{type}")
public class SimpleHOTPWebSocket {
@OnMessage
public void onMessage(String message, Session session)
throws IOException, InterruptedException {
System.out.println("Received: " + message);
}
@OnOpen
public void onOpen(Session session,
EndpointConfig c,
@PathParam("email") String email,
@PathParam("type") String type) {
System.out.println("Client " + email + " connected as a " + type);
}
@OnClose
public void onClose(Session session) {
System.out.println("Connection closed");
}
}
这是我的 pom.xml:
我也尝试过使用 webapp-runner 和 jetty 运行它,所以问题一定出在我的代码或 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>cf.zelitomas</groupId>
<artifactId>simplesocket</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>simplesocket</name>
<pluginRepositories>
<pluginRepository>
<id>m.g.o-groups-glassfish</id>
<url>http://maven.glassfish.org/content/groups/glassfish</url>
</pluginRepository>
</pluginRepositories>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>3.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.glassfish</groupId>
<artifactId>maven-embedded-glassfish-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<app>${project.build.directory}/${build.finalName}.war</app>
<autoDelete>true</autoDelete>
<port>8080</port>
<contextRoot>test</contextRoot>
</configuration>
</plugin>
</plugins>
</build>
</project>
我正在启动服务器mvn clean install embedded-glassfish:run
如果您想查看源代码或尝试使用 war 文件,请随时在此处下载(war,源)请,任何人都可以看到我做错了什么吗?
感谢您的帮助,我已经为此苦苦挣扎了 10 多个小时。
也很抱歉我的英语不好