用ignite和springboot2.0配置好后,启动会报错“Caused by: org.h2.jdbc.JdbcSQLException: Unsupported connection setting "NESTED_JOINS" ”
因为springboot1.5之后,使用的h2是1.4.197版,貌似不支持NESTED_JOINS,要解决这个问题就需要在pom.xml里增加依赖
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
</dependency>
发布项目时也需要注意,是否把1.4.197版删掉,替换为196版