对于 H2 数据库单点的搭建,可以参考:#24 H2数据库支持集群模式,其实只是个主从结构,并且只支持两台: <img width="361" alt="h2_cluster" src="https://user-images.githubusercontent.com/2493670/28855648-97c6b5de-7770-11e7-8e93-d35868dc6409.png"> 从源码这里可以看出来: <img width="712" alt="h2_source" src="https://user-images.githubusercontent.com/2493670/28855665-b0101cf2-7770-11e7-8b82-3ece0807db04.png"> 具体搭建的方法,直接看出下面的链接~ ### 参考链接 - [Clustering / High Availability](http://www.h2database.com/html/advanced.html#clustering) - [Java Doc- Class CreateCluster](https://javadocs.com/docs/com.h2database/h2/1.3.151/org/h2/tools/CreateCluster.html) - [H2数据库攻略之四-集群](http://blog.csdn.net/likeaboy_fire/article/details/44021991) - [H2数据库集群](http://blog.csdn.net/Drizzt0878/article/details/50765314)