@Component
public class ChatUtil {
// 这里使用静态,让 service 属于类
private static ChatService chatService;
// 注入的时候,给类的 service 注入
@Autowired
public void setChatService(ChatService chatService) {
ChatUtil .chatService = chatService;
}
}
网友评论