実現したいこと
pom.xml1行目に出るエラーを解消したい。
前提
既存のMavenプロジェクトを取り込みました。
古い環境で作成されたものなので何か設定を変えないといけないのかと思うのですが、どれを変更するべきか見当がつきません。
STS4は4.21.0Releaseのものをインストールし、Java8にパスを通しています。
mavenはmvn -vするとApache Maven 3.9.6とでます。
不足している情報があればご教示いただけますと幸いです。
発生している問題・エラーメッセージ
Exception java.lang.ExceptionInInitializerError [in thread "Worker-2: ビルド"] Unable to make field private final java.util.Comparator java.util.TreeMap.comparator accessible: module java.base does not "opens java.util" to unnamed module @e60e418 または Unable to make field private final java.util.Comparator java.util.TreeMap.comparator accessible: module java.base does not "opens java.util" to unnamed module @6d7ff82d 立ち上げてすぐは下のエラーが出るのですが、エラーを解消しようと何かを追記→ダメだったので元に戻すということをすると上のエラーが出るようになります。
該当のソースコード
xml
1<!-- ドメイン名など、testと置き換えている部分があります --> 2<?xml version="1.0" encoding="UTF-8"?> 3<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 7 <groupId>test</groupId> 8 <artifactId>test</artifactId> 9 <version>0.0.1-SNAPSHOT</version> 10 <packaging>war</packaging> 11 12 <name>test</name> 13 <description>test</description> 14 15 <parent> 16 <groupId>org.springframework.boot</groupId> 17 <artifactId>spring-boot-starter-parent</artifactId> 18 <version>1.3.6.RELEASE</version> 19 <relativePath /> <!-- lookup parent from repository --> 20 </parent> 21 22 <properties> 23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 24 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 25 <java.version>1.8</java.version> 26 </properties> 27 28 29 <build> 30 <resources> 31 <resource> 32 <directory>${build.level.resources}</directory> 33 </resource> 34 <resource> 35 <directory>src/main/resources</directory> 36 </resource> 37 </resources> 38 <plugins> 39 <plugin> 40 <groupId>org.springframework.boot</groupId> 41 <artifactId>spring-boot-maven-plugin</artifactId> 42 <dependencies> 43 <dependency> 44 <groupId>org.springframework</groupId> 45 <artifactId>springloaded</artifactId> 46 <version>1.2.6.RELEASE</version> 47 </dependency> 48 </dependencies> 49 </plugin> 50 </plugins> 51 </build> 52 53 <dependencies> 54 <dependency> 55 <groupId>org.springframework.boot</groupId> 56 <artifactId>spring-boot-starter-jersey</artifactId> 57 </dependency> 58 <dependency> 59 <groupId>org.springframework.boot</groupId> 60 <artifactId>spring-boot-starter-thymeleaf</artifactId> 61 </dependency> 62 <dependency> 63 <groupId>org.springframework.boot</groupId> 64 <artifactId>spring-boot-starter-web</artifactId> 65 </dependency> 66 <dependency> 67 <groupId>org.springframework.boot</groupId> 68 <artifactId>spring-boot-starter-tomcat</artifactId> 69 <scope>provided</scope> 70 </dependency> 71 72 <!-- test --> 73 <dependency> 74 <groupId>org.springframework.boot</groupId> 75 <artifactId>spring-boot-starter-test</artifactId> 76 <scope>test</scope> 77 </dependency> 78 79 <!-- security --> 80 <dependency> 81 <groupId>org.springframework.boot</groupId> 82 <artifactId>spring-boot-starter-security</artifactId> 83 </dependency> 84 <dependency> 85 <groupId>org.thymeleaf.extras</groupId> 86 <artifactId>thymeleaf-extras-springsecurity4</artifactId> 87 </dependency> 88 89 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> 90 <dependency> 91 <groupId>org.apache.commons</groupId> 92 <artifactId>commons-lang3</artifactId> 93 <version>3.4</version> 94 </dependency> 95 96 <dependency> 97 <groupId>org.projectlombok</groupId> 98 <artifactId>lombok</artifactId> 99 <version>1.16.10</version> 100 </dependency> 101 102 <!-- https://mvnrepository.com/artifact/javax.mail/mail --> 103 <dependency> 104 <groupId>javax.mail</groupId> 105 <artifactId>mail</artifactId> 106 <version>1.4</version> 107 </dependency> 108 109 <dependency> 110 <groupId>org.springframework.boot</groupId> 111 <artifactId>spring-boot-starter-undertow</artifactId> 112 </dependency> 113 114 <dependency> 115 <groupId>javax.xml.bind</groupId> 116 <artifactId>jaxb-api</artifactId> 117 <version>2.3.0</version> 118</dependency> 119 </dependencies> 120 121 <profiles> 122 <profile> 123 <id>develop</id> 124 <properties> 125<build.level.resources>src/develop/resources</build.level.resources> 126 </properties> 127 <build> 128 <finalName>test</finalName> 129 </build> 130 </profile> 131 <profile> 132 <id>staging</id> 133 <properties> 134 <build.level.resources>src/staging/resources</build.level.resources> 135 </properties> 136 <build> 137 <finalName>test</finalName> 138 </build> 139 </profile> 140 <profile> 141 <id>production</id> 142 <properties> 143 <build.level.resources>src/production/resources</build.level.resources> 144 </properties> 145 <build> 146 <finalName>test</finalName> 147 </build> 148 </profile> 149 </profiles> 150</project> 151
試したこと
類似エラーについての記事を参考に
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.6</version>
</plugin>
を追加してみたのですが、新たなエラーが増えたため、元に戻しました。
回答1件
あなたの回答
tips
プレビュー