Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个必须在 1.5 运行时环境中部署的项目。那么有谁知道如何使用 Intellij IDEA 将项目目标构建为 1.5 x 1.6 JDK,而我的开发是 Mac OSX 10.8 和 JDK 1.6
可以按项目或按模块控制字节码版本:
我有同样的问题,我修复了它,更改了 maven 编译器插件配置
<plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin>
您也可以在单个项目的基础上更改此设置,而不是在全局设置中设置默认字节码版本。
在 2016.2 中: “项目设置”下的 文件 -> 项目结构-> 模块 在左侧窗格中选择要更改的模块 在“源”选项卡下,将“语言级别:”更改为 JDK 支持的任何级别