idea编辑器jdk版本报错

刚开始使用idea作为开发工具的时候,经常会出现些奇怪的问题,比如,我明明配置了jdk7,在mode-language lever里去显示为默认设置,因此在运行时就会出现一些奇奇怪怪的问题,造成项目跑不起来,

后来在pom文件中增加了这样一行配置,用来指定项目jdk版本

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

,可以解决编辑器中的一些问题, 了不如jdk5与jdk7冲突的  的override注解问题,与泛型指定问题。

时间: 2024-10-22 04:12:16

idea编辑器jdk版本报错的相关文章

mysql版本报错

IntelliJIdea2019.3打开原项目报mysql版本报错: Error opening zip file or JAR manifest missing : /C:/Users/flycat/.IntelliJIdea2019.3/config/plugins/mysql-explain/lib/mysql-explain-agent-jar-with-dependencies.jar 查看MYSQL版本,原来是5.1.40,直接调整为8.0.19解决方法:<mysql.version

maven版本报错

以前做过的一个maven项目用jdk1.8环境下开发的,当初在target下生成了jar包,我在新环境用的jdk1.7环境,编译时老是报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project zpxmaven: Compilation failure: Compilation failure: 后来我把target下的jar包删

web.xml引入 xml (tomcat 7.0.52) 以上版本报错!

今天在搞工作流,tomcat7.0.57 总是报错,解析不了web.xml引用的joa.xml . <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app [<!ENTITY joa SYSTEM  "joa.xml">]> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst

安装vant2.2.7版本报错These dependencies were not found: vant/es/goods-action-big-btn in ./src/config/vant.config.js......

一.问题 前天,在使用vant的checkbox复选框的时候,注意到新增加一个全选功能,通过 ref 可以获取到 CheckboxGroup 实例并调用实例方法.于是我就想用这个,但是按照上面的示例写了以后,一直提示我toggleAll is not a function,让我很纳闷. 后来发现我自己的vant的版本还是1.x的,而这个功能是在2.2.6才新增加的,于是我就升级呗. 问题来了,安装了最新版以后,在我运行程序的时候 ,就一直报错, These dependencies were n

Windows10安装Mysql5.7.19版本报错

安装环境:Windows10 安装版本:MySql 5.7.19 安装5.7.19版本Mysql时报如下错误: 根据日志分析是缺少visual Studio 2013 Redistributable 下载完成后,安装: 还是失败: 在网上下载各种vs测试,发现都无法将MySQL Server安装上去.后来发现尝试使用其他5.7.19,非SqlServer官方下载的版本.在前提条件visual Studio 2013 Redistributable安装后,运行可以安装成功. 旧版本installe

Windows10安装Mysql5.7.19.0 msi 版本报错

安装环境:Windows10 安装版本:MySql 5.7.19.0 msi 1.安装5.7.19.0 msi版本Mysql时报如下错误: 2.根据日志分析是缺少visual Studio 2013 Redistributable 3.下载完成后,安装仍然显示失败: 4.在网上下载各种vs测试,发现都无法将MySQL Server安装上去.后来发现尝试使低版本5.7.17,非SqlServer官方下载的最新5.7.19版本.在前提条件visual Studio 2013 Redistributa

Eclipse Maven项目报错1之JAVA编译版本报错

一.错误Dynamic Web Module 3.0 requires Java 1.6 or newer 解决办法,在pom.xml文件中增加JAVA版本的属性配置,如下 <!-- add by wxj --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version&

navicat连接mysql8.0+版本报错2059

ERROR 2059 : Authentication plugin 'caching_sha2_password' cannot be loaded 问题: 连接Docker启动的mysql出现:ERROR 2059: Authentication plugin 'caching_sha2_password' cannot be loaded 问题出现原因: 在用navicat连接MySQL8+时会出现2059错误,这是由于新版本的MySQL使用的是caching_sha2_password验

Navicat 连接Mysql 8.0以上版本报错1251的详细解决方案

从MySql5.7版本跳到了Mysql 8.0的版本,安装的时候提示链接加密方式已经改变 解决办法: 更改加密方式: 1.以root账户用户登录Mysql: mysql -u root -p 2.更改加密方式: ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; 3.更改密码: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native