为啥我在构建项目时无法访问我的 IntelliJ 包?
Posted
技术标签:
【中文标题】为啥我在构建项目时无法访问我的 IntelliJ 包?【英文标题】:Why can't I access my IntelliJ packages when building a project?为什么我在构建项目时无法访问我的 IntelliJ 包? 【发布时间】:2021-05-14 06:11:15 【问题描述】:每当我运行 mvn clean install
时都会收到以下错误:“无法访问 com.ludiaz.template。”
Error Message
在我切换计算机并在 Ubuntu 20.04 上重新下载 IntelliJ 后,其他项目也会出现此错误。我检查了我的所有课程都设置为公开,并且点击了无数次Invalidate Caches/Restart
。
这是产生上述错误的程序的项目结构:project structure. 它只是一个简单的 Spring Initializr 应用程序,控制器中只有一个函数返回“Hello”。
编辑:
这是我的 pom.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.4.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.ludiaz</groupId>
<artifactId>template</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>template</name>
<description>Template made with Spring Initializr</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<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>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
模板应用程序.java:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TemplateApplication
public static void main(String[] args)
SpringApplication.run(TemplateApplication.class, args);
DemoController.java
package com.ludiaz.template.controller;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Slf4j
@Controller
public class DemoController
@ResponseBody
@GetMapping("/demo")
public String demo()
return "Hello Demo";
【问题讨论】:
请将消息添加为文本而不是图片。 你能显示 pom.xml 和你的代码吗? @khmarbaise 了解,对此感到抱歉。 @dan1st 是的,抱歉,如果您需要更多信息,请告诉我。 请不要在您的问题中编辑解决方案,发布解决方案的答案并在超时后接受。 【参考方案1】:我的一些 Spring 依赖项似乎被破坏了。我只是删除了我的/home/.m2
文件夹并重新构建了项目。
【讨论】:
以上是关于为啥我在构建项目时无法访问我的 IntelliJ 包?的主要内容,如果未能解决你的问题,请参考以下文章
为啥 kotlin gradle 插件无法使用 1.8 目标构建?
无法在 intellij idea 中使用 gradle 构建 javafx 项目
用IntelliJ IDEA建maven项目,无法再main下建java文件了无法new class,为啥