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.
您可以将项目目录下的 build.scala 文件修改如下,以强制 javac 输出英文消息。
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings( // 在此处添加自己的项目设置 javacOptions ++= Seq("-J-Duser.language", "EN") )