【发布时间】:2017-12-20 00:00:19
【问题描述】:
我在一个严重依赖 WebSocket 进行数据交换的 Spring Boot 应用程序中使用 @SubscribeMapping。应用程序由 Spring Security 保护。
客户端我使用 Stomp over WebSocket:
this.socket = new WebSocket(this.socketUrl);
this.stompClient = Stomp.over(this.socket);
this.stompClient.debug = null;
this.stompClient.connect({},
function(frame) {
this.$.chartLoader.generateRequest();
}.bind(this),
function(e) {
window.setTimeout(function() {
this.connectWs();
}.bind(this), 2500);
}.bind(this)
);
this.stompClient.subscribe('/topic/chart/' + chart.id,
function(message, headers) {
this.setChartData(chart, JSON.parse(message.body));
}.bind(this), {
"id" : "" + chart.id
}
);
服务器端,如何在注解的方法中获取当前登录的用户?
@SubscribeMapping("/chart/{id}")
public void subscribeMapping(@DestinationVariable("id") final short id) {
// Here I would need the current user...
messagingTemplate.convertAndSend("/topic/chart/" + id, chartService.getChartData(account, sensor, new Date(), new Date()));
}
我试过SecurityContextHolder.getContext().getAuthentication(),但它返回null。
【问题讨论】:
标签: java spring spring-boot websocket stomp