作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试运行以下代码:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
但是 IDE 显示错误:
Exception in thread "main" java.lang.IllegalArgumentException: PWC6309: Illegal compilerSourceVM: 12
at org.apache.jasper.JspC.setCompilerSourceVM(JspC.java:724)
at org.netbeans.modules.web.project.ant.JspC.main(JspC.java:80)
at org.netbeans.modules.web.project.ant.JspCSingle.main(JspCSingle.java:119)
F:\Code\Netbean project\Smartphone Shop\nbproject\build-impl.xml:936: Java returned: 1
BUILD FAILED (total time: 0 seconds)
如何修复这个错误?我使用 Netbeans 11.0 和 Tomcat 9.0。
最佳答案
打开:
[YOUR PROJECT DIR]/nbproject/build-impl.xml
并删除或注释掉这两行:
<arg value="-compilerSourceVM ${javac.source}"/>
<arg value="-compilerTargetVM ${javac.target}"/>
就是这样。为我工作:)
关于java - 线程中的异常 "main"java.lang.IllegalArgumentException : PWC6309: Illegal compilerSourceVM: 12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55844147/
我尝试运行以下代码: JSP Page Hello World! 但是 IDE 显示错误: Excep
我是一名优秀的程序员,十分优秀!