在使用dubbo启动服务端时,需要使后台一直运行,看网上是使用输入流来阻塞:
System.in.read(); // 为保证服务一直开着,利用输入流的阻塞来模拟;
找到一种新的方式,使用锁这个对象类来阻塞 使之不关闭
解释: synchronized (XXX.class)
XXX.class本身是XXX类的一个静态属性,也是一个对象。 锁XXX.class的意思就是对整个类加锁,也就是说无论创建了多少个XXX类的对象,这些对象都共享一个相同的锁标记。
使用如下:
<span style="color:#ff0000;">synchronized (Provider.class)</span> {//服务器启动后进行线程等待。服务一直运行着 while(true){ try{ Provider.class.wait(); }catch(InterruptedException e){ System.out.println(e); } } }
Provider是类名,给这个类对象加了锁,其他的请求过来时就会一直等待上个进程的结束,完整的如下:
public class Provider { public static void main(String[] args) throws Exception { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( new String[] { "applicationContext.xml" }); context.start(); //System.in.read(); // 为保证服务一直开着,利用输入流的阻塞来模拟 <span style="color:#ff0000;">synchronized (Provider.class)</span> {//服务器启动后进行线程等待。服务一直运行着 while(true){ try{ Provider.class.wait(); }catch(InterruptedException e){ System.out.println(e); } } } } }
使用synchronized阻塞后台服务进程,使之一直运行
时间: 2024-10-29 04:33:42