审计记录

src/main/java/com/xxxcom/xxxproduct/Main.java 309 字节
胡敏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.xxxcom.xxxproduct;

import io.vertx.core.Future;
import io.vertx.core.Vertx;

public class Main {

	public static void main(String[] args) {
		
		XXXSrv jdbc=new XXXSrv();
		 try {
			jdbc.start();
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
 
}