我几乎完成了如何将服务器端 Shiny 应用程序嵌入到 JSP 页面中而不在其他地方公开应用程序,但这个解决方案途径的最后一部分让我非常卡住了。
(基本背景:这是一个Spring MVC Java网络服务器,与Shiny应用程序在同一台机器上。如果可能的话,我想避免移动到 Spring Boot。
该代码成功地将所有 Shiny 内容从localhost:3305
镜像到localhost:8080/project/shiny-proxy
,除了 websocket 连接 URL:ws://localhost:8080/project/shiny-proxy/websocket/
需要映射到ws://localhost:3305/websocket/
。 当我在 Chrome 中访问它时,http://localhost:3305/websocket/
会返回一个硬编码的"未找到"HTML 页面,因此使用http://
前缀的请求不太可能通过任何方法起作用。
请注意,我希望如果我能在客户端和ws://localhost:3305/websocket/
之间建立连接,Java 代码将不需要处理它们之间的任何 Websocket 消息。
以下是到目前为止基于 https://stackoverflow.com/a/23736527/7376471 的控制器代码:
private static final RestTemplate restTemplate = new RestTemplate(
/* specific HttpRequestFactory here */);
@RequestMapping(path = "/shiny-proxy/**")
public ResponseEntity<String> mirrorRest(@RequestBody(required = false) String body,
HttpMethod method, HttpServletRequest request) throws URISyntaxException {
String path = StringUtils.removeStart(request.getRequestURI(), "/project/shiny-proxy");
boolean websocket = false;
URI uri;
if (path.endsWith("/websocket/")) {
websocket = true;
// restore the ws:// that the request URL started with after Spring MVC makes it http://
uri = new URI("ws", null, "localhost", 3305, path, request.getQueryString(), null);
} else {
uri = new URI(request.getScheme(), null, "localhost", 3305, path, request.getQueryString(), null);
}
if (websocket) {
System.out.println(request.getRequestURL().toString());
System.out.println(request.getRequestURI());
System.out.println(path);
System.out.println(uri);
}
HttpHeaders headers = new HttpHeaders();
if (path.endsWith(".css.map")) { // special handling for unusual content types from Shiny
headers.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
}
HttpEntity<String> httpEntity = new HttpEntity<>(body, headers);
ResponseEntity<String> ret = null;
try {
ret = restTemplate.exchange(uri, method, httpEntity, String.class);
} catch (Exception e) {
System.out.println(request.getRequestURL().toString());
System.out.println(request.getRequestURI());
System.out.println(path);
System.out.println(uri);
e.printStackTrace();
}
if (websocket) {
System.out.println("ResponseEntity headers: " + ret.getHeaders());
}
return ret;
}
但我找不到任何适用于ws://
URL 的HttpRequestFactory
(其中许多将 URI 转换为不支持 ws://的 java.net.URL,而我测试过的其他 无法处理反射代码中的 ws://(,即使我可以,我也不确定返回ResponseEntity
是否适用于 ws 连接。
所以我的问题是,有没有办法让控制器在给定 ws://请求 URL 的情况下在客户端和 localhost:3305 之间正确建立 websocket 连接,或者我应该放弃 RestTemplate 的想法并尝试像 Nginx 这样的配置代理?
事实证明,在我的情况下,使用配置的代理的解决方案非常简单: 在/opt/bitnami/apache2/conf/httpd.conf
中启用Include conf/extra/httpd-vhosts.conf
,
并将 httpd-vhosts.conf 的内容设置为:
<VirtualHost *:80>
RewriteEngine on
RewriteRule /project/shiny-proxy/websocket/(.*) ws://localhost:3305/websocket/$1 [P,L]
</VirtualHost>
Bitnami的默认配置非常好,不需要其他更改。