我在Spring Boot应用程序中使用@SubscribeMapping,该应用程序严重依赖WebSockets进行数据交换。该应用程序由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
。
答案 0 :(得分:4)
您可以尝试添加Principal
对象作为方法参数。这个接口扩展了Authentication
,它有几个可用的实现(Spring会根据你的配置注入好的实现)。
public void subscribeMapping(@DestinationVariable("id") final short id, Principal principal) {
principal.getName();
}
This article也可以为您提供帮助。