1. 新しく作成したサーブレット ファイル (hibernate.cfg.xml) を開き、ヘッダー ファイルを
< に変更します。 !DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
2. 開きます。プロジェクトが存在するディレクトリ .settings フォルダー
2.1 プロジェクトの設定を変更し、プロジェクトの .settings ディレクトリにある org.eclipse.jdt.core.prefs を開きます (NOTEPAD++ などのツールを開きます)
1.5 を次のように変更します1.8、例:
1 eclipse.preferences.version=12 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled3 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.84 org.eclipse.jdt.core.compiler.compliance=1.85 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error6 org.eclipse.jdt.core.compiler.problem.enumIdentifier=error7 org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning8 org.eclipse.jdt.core.compiler.source=1.8
2.2org.eclipse.wst.common.project.facet.core.xmlを開く
Put
1 <?xml version="1.0" encoding="UTF-8"?>2 <faceted-project>3 <fixed facet="wst.jsdt.web"/>4 <installed facet="jst.web" version="3.0"/>5 <installed facet="wst.jsdt.web" version="1.0"/>6 <installed facet="jboss.m2" version="1.0"/>7 <installed facet="java" version="1.8"/>8 <installed facet="jst.cdi" version="1.0"/>9 </faceted-project>
3. 依存関係を保存するpom.xmlファイルを開き、下部を変更します
for
1 <build> 2 <finalName>D5.22hotai</finalName> 3 <plugins> 4 <plugin> 5 <groupId>org.apache.maven.plugins</groupId> 6 <artifactId>maven-compiler-plugin</artifactId> 7 <version>3.3</version> 8 <configuration> 9 <!-- 指定source和target的版本 --> 10 <source>1.8</source> 11 <target>1.8</target> 12 </configuration> 13 </plugin> 14 </plugins> 15 </build>
4. Eclipseを再起動します。または、右クリックしてプロジェクト Maven→ プロジェクトの更新...を選択します
以上がMaven プロジェクトで発生する問題を解決するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。