blob: 6787d363826bfa3dcdc9df34b700fe395a421b70 [file] [log] [blame]
package org.apache.dubbo.benchmark;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Server {
public static void main(String[] args) throws InterruptedException {
try (ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("provider.xml")) {
context.start();
Thread.sleep(Integer.MAX_VALUE);
}
}
}