赞
踩
给定一个WebSocket端点如下。
@ServerEndpoint(value = "/Push/CartPush/{token}")
public final class CartPush {
// ...
}端点能够接受路径参数{token}。然而,path参数是可选的,它是在Java脚本的运行时动态确定的。在404中,如下所示在JavaScript中跳过此参数。
var ws = new WebSocket("wss://localhost:8443/ContextPath/Push/CartPush");WebSocket connection to
'wss://localhost:8443/ContextPath/Push/CartPush' failed: Error during
WebSocket handshake: Unexpected response code: 404
它将令牌值强制如下。
var token = "token value";
var ws = new WebSocket("wss://localhost:8443/ContextPath/Push/CartPush" + "/" + token);为了排除除GET和POST以外的所有不需要的HTTP方法,我在web.xml中使用适当的URL模式和角色映射,使用以下限制或约束以及Servlet安全约束。
Disable unneeded HTTP methods by 403
/Public/*
/Push/*
/javax.faces.resource/*
GET
POST
如何使给定的路径参数可选?
正在使用的服务器是WildFly 10.0.0 final / Java EE 7。 sub>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。