z7658329 commented on issue #2249: URL: https://github.com/apache/incubator-hugegraph/issues/2249#issuecomment-1641422593
> <dependency> > <groupId>com.aircas</groupId> > <artifactId>talent-common</artifactId> > <version>0.0.1-SNAPSHOT</version> > </dependency> > <!-- 数据库依赖 --> > <!-- 数据源 --> > <dependency> > <groupId>com.zaxxer</groupId> > <artifactId>HikariCP</artifactId> > <version>5.0.1</version> > </dependency> > <dependency> > <groupId>org.springframework</groupId> > <artifactId>spring-jdbc</artifactId> > <version>6.0.10</version> > </dependency> > <dependency> > <groupId>org.anyline</groupId> > <artifactId>anyline-mvc</artifactId> > <exclusions> > <exclusion> > <artifactId>javassist</artifactId> > <groupId>org.javassist</groupId> > </exclusion> > </exclusions> > </dependency> > <!-- MongoDB --> > <dependency> > <groupId>org.springframework.boot</groupId> > <artifactId>spring-boot-starter-data-mongodb</artifactId> > </dependency> > <!-- MySQL --> > <dependency> > <groupId>org.anyline</groupId> > <artifactId>anyline-data-jdbc-mysql</artifactId> > </dependency> > <dependency> > <groupId>mysql</groupId> > <artifactId>mysql-connector-java</artifactId> > <version>8.0.31</version> > </dependency> > <!-- PostgreSQL --> > <dependency> > <groupId>org.anyline</groupId> > <artifactId>anyline-data-jdbc-postgresql</artifactId> > </dependency> > <dependency> > <groupId>org.postgresql</groupId> > <artifactId>postgresql</artifactId> > <scope>runtime</scope> > <exclusions> > <exclusion> > <artifactId>checker-qual</artifactId> > <groupId>org.checkerframework</groupId> > </exclusion> > </exclusions> > </dependency> > <!-- ElasticSearch --> > <dependency> > <groupId>org.elasticsearch.client</groupId> > <artifactId>elasticsearch-rest-high-level-client</artifactId> > <version>7.4.2</version> > <exclusions> > <exclusion> > <groupId>org.elasticsearch</groupId> > <artifactId>elasticsearch</artifactId> > </exclusion> > </exclusions> > </dependency> > <dependency> > <groupId>org.elasticsearch</groupId> > <artifactId>elasticsearch</artifactId> > <version>7.4.2</version> > </dependency> > <!-- Neo4j --> > <dependency> > <groupId>org.anyline</groupId> > <artifactId>anyline-data-jdbc-neo4j</artifactId> > </dependency> > <dependency> > <groupId>org.neo4j</groupId> > <artifactId>neo4j-jdbc-driver</artifactId> > <version>4.0.9</version> > </dependency> > <!-- Redis --> > <dependency> > <groupId>org.springframework.boot</groupId> > <artifactId>spring-boot-starter-data-redis</artifactId> > </dependency> > <!-- hugeGraph --> > <dependency> > <groupId>org.apache.hugegraph</groupId> > <artifactId>hugegraph-client</artifactId> > <version>1.0.0</version> > </dependency> > <!--jdk17缺少包--> > <dependency> > <groupId>javax.xml.bind</groupId> > <artifactId>jaxb-api</artifactId> > <version>2.3.1</version> > </dependency> 这个确实很奇怪,我这本地springboot3 jdk17 或 springboot2.X jdk8/11都是ok,目前确实存在jar的冲突导致版本没升上来,你可以把依赖树发一下吗?看看为何你这里缺失javax.ws.rs.core.FeatureContex类 @hutlearner -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
