当我尝试使用新版本“v2.1.7”创建SpringBoot项目时
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
这一次它通过以下错误:
说明资源路径位置
类型未知pom。xml/demo-1第1行Maven配置问题
如果我要取代这个新版本到我以前的旧版本在porm.xml文件的名称空间它的工作良好,没有任何错误,如果我删除. m2文件夹并重新安装eclipse然后它的支持新版本,但我想使用现有的Eclipse与Spring Boot的新版本,我能为它做什么。
可以更新现有的。m2文件夹?
波姆。xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo-1</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
当我试图安装maven这一次以下错误显示
[INFO] Scanning for projects...
[INFO]
[INFO] -------------------------< com.example:demo-1 >-------------------------
[INFO] Building demo-1 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ demo-1 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 0 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ demo-1 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\Enternship\SPRING BOOT\demo-1\target\classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.933 s
[INFO] Finished at: 2019-09-02T18:45:56+05:30
[INFO] ------------------------------------------------------------------------
[WARNING] The requested profile "pom.xml" could not be activated because it does not exist.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project demo-1: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
只需配置JDK路径,步骤如下
这样你就看不到错误了
=>No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
本文向大家介绍spring boot中各个版本的redis配置问题详析,包括了spring boot中各个版本的redis配置问题详析的使用技巧和注意事项,需要的朋友参考一下 前言 今天在springboot中使用数据库,springboot版本为2.0.2.RELEASE,通过pom引入jar包,配置文件application.properties中的redis配置文件报错,提示例如deprec
我想为我们的应用程序配置Spring启动致动器endpoint。下面是我的pom.xml文件,添加了Spring启动执行器依赖项。 当我启动应用程序时,我看不到文档中显示的任何注册的/application/URLendpoint。文件表明,在将致动器相关性添加到pom之后。xml,我应该在启动日志中看到额外的映射,但我没有。这里会有什么问题? 下面是一个启动日志:
错误: hive-site.xml
@ComponentsSCAN或@SpringBootApplication无法访问“ABCService”.将其移动到@ComponentsSCAN中配置的包中,或者更新@ComponentsSCAN配置。 这是我在Sonarqube analysis中得到的9个关键bug的错误信息,每个服务和控制器都有一个。 属于未包含在@ComponentScan配置中的包的Spring bean将无法在S
我试图基于“spring-security-saml2-sample”设置一个SP,但是当我在Tomcat上部署WAR文件时,我得到了以下异常: 我知道导致异常的原因是IdP(Oracle OIF)自签名证书没有正确导入密钥库。联合URL受SSL保护,因此我已经将SSL证书包含在密钥库(samlKeystore.jks)中。我还包含了用于签署SAML断言响应的OIF证书。 这是我正在尝试的secu
我使用redis作为我的Spring缓存实现。官方文档说我们应该这样配置缓存管理器: 当jedis版本=2.0.0和spring-data-redis版本=1.0.2时,它可以正常工作。释放。 但是在最近的版本中(例如jedis=2.5.2和spring-data-redis=1.3.4. RELEASE),上面的配置不起作用。相反,它抛出一个异常,说“loadCache不得返回一个空集合”。然后