自动布线SimpMessagingTemplate



我在服务类中尝试使用SimpMessagingTemplate时遇到了麻烦。以下是相关的代码段:

UserService.java-自动布线失败,template=null

@Service
public class UserService{
    @Autowired
    private SimpMessagingTemplate template;
    // Some Code
    public void tellUser(String username, String url) {
        // This is always true
        System.out.println("TEMPLATE NULL? " +(this.template == null));
        // Further code omitted
    }
}

SocketController.java-自动布线可以工作,Spring Websockets可以集成工作。

@Controller
public class WebSocketController {
    @Autowired
    private SimpMessagingTemplate template;
    public void tellUser(String username, String url) {
        // False here, template is autowired correctly
        System.out.println("TEMPLATE NULL? " +(this.template == null));
        this.template.convertAndSendToUser(username, "/test/notify", new Greeting("USER SPECIFIC MESSAGE: " + url));
    }
}

WebSocketConfig.java

@Configuration
@EnableScheduling
@EnableWebSocketMessageBroker
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
    @Override
    public void configureMessageBroker(MessageBrokerRegistry config) {
        config.enableSimpleBroker("/user", "/test");
        config.setApplicationDestinationPrefixes("/app");
    }
    @Override
    public void registerStompEndpoints(StompEndpointRegistry registry) {
        registry.addEndpoint("/test").withSockJS();
    }
}

所以基本上,自动布线在我的Controller类中工作,但在我的Service中不工作。我确实需要在服务中手动调用convertAndSendToUser。控制器和服务之间的自动布线SimpMessagingTemplate有什么区别?任何关于为什么会发生这种情况的意见都将不胜感激。

最初,控制器自动连接和服务自动连接之间没有任何区别(如果SimpMessagingTemplate在控制器中可用,那么它也必须在服务类中可用),除非spring没有加载服务类。

你是怎么装豆子的?也许服务类的套餐不在自动扫描范围内?您是在上下文XML中定义bean吗?

相关内容

  • 没有找到相关文章

最新更新