websocket 中使用Service层的方法

Posted 段桥123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了websocket 中使用Service层的方法相关的知识,希望对你有一定的参考价值。

创建公共Utils 类    

[java] view plain copy
 
  1. ApplicationContextRegister    
[java] view plain copy
 
  1. @Component  
  2. @Lazy(false)  
  3. public class ApplicationContextRegister  implements ApplicationContextAware {  
  4.     private static ApplicationContext APPLICATION_CONTEXT;  
  5.   
  6.     /** 
  7.      * 设置spring上下文  *  * @param applicationContext spring上下文  * @throws BeansException 
  8.      */  
  9.   
  10.     @Override  
  11.     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {  
  12.         APPLICATION_CONTEXT = applicationContext;  
  13.     }  
  14.   
  15.     public static ApplicationContext getApplicationContext() {  
  16.         return APPLICATION_CONTEXT;  
  17.     }  
  18. }  

 

[java] view plain copy
 
  1. //websocket 使用service 层  
  2.               ApplicationContext act = ApplicationContextRegister.getApplicationContext();  
  3.               messagelogService=act.getBean(MessagelogService.class);  
  4.               int resultlog = messagelogService.insertIntoMessagelog(messagelog);  

  即可使用到service里的方法了!!

以上是关于websocket 中使用Service层的方法的主要内容,如果未能解决你的问题,请参考以下文章

在 play 框架中遵循 service 和 dao 层的方法会减少 play 的主要功能吗?

Android 中基于 Websocket 的 MQTT

java中dao层和service层的区别是啥?

mybatis项目,在线程中调用Service和DAO层的方法时会报空指针

spring springboot websocket 不能注入( @Autowired ) service bean 报 null 错误

关于service层和DAO层的几点疑惑