run java project with h2 without installation
implementation 'com.h2database:h2:1.4.200' public class App { public static void main(String[] args) throws Exception { final String[] H2_ARGS = new String[]{ "-web" , "-webPort", "9091" , "-webAdminPassword", "" , "-browser" , "-tcp" , "-tcpAllowOthers" , "-tcpPort", "9090" , "-key", "test", "test" }; Server h2TcpServer = Server.createTcpServer(H2_ARGS); Server h2WebServer = Server.crea..
Program language/Java
2022. 1. 22. 10:46