Try-with-resources are not supported at language level '5'

2022-10-28 15:08:45 浏览数 (1)

Try-with-resources are not supported at language level '5' 没有指定maven版本导致 的

指定maven版本

没有指定maven版本导致 的

指定maven版本就可以

代码语言:javascript复制
//再try()中写代码报错
try (SqlSession session  = sqlSessionFactory.openSession()) {
            
}

解决方法:

代码语言:javascript复制
<plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-compiler-plugin</artifactId>
     <configuration>
         <source>8</source>
         <target>8</target>
     </configuration>
</plugin>

0 人点赞