問題タブ [java-11]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Java 11 でのコンパイル時に Intellij が java.net.http を見つけられない
プロジェクトの 1 つを Java 11 に対応させようとしていますが、何らかの理由で Intellij が を見つけられませんjava.net.http
。module-info.java
間違って入力した場合のように見つからないため、下線が引かれていませんが、プロジェクトをビルドしようとすると、以下のエラーが発生します。Intellij 2018.2.3 を再インストールし、他のすべてのバージョンの Java をアンインストールしようとしました。これを機能させる方法についてのアドバイスをいただければ幸いです。
エラー:
モジュール情報.java:
Request.java:
構造:
java - Java 11 package javax.xml.bind does not exist
I'm trying to deserialize XML data into a Java content tree using JAXB, validating the XML data as it is unmarshalled:
When I build the project with Java 8 it's fine, but building it with Java 11 fails with a compilation error:
How do I fix the issue?