F:\springboot06idu\src\main\java\com\controller\FileController.java:29:22 java: 程序包com.annotation不存在
时间: 2023-09-09 20:13:17 浏览: 146
IDEA2020.1启动SpringBoot项目出现java程序包:xxx不存在
请确认您是否正确导入了com.annotation包。确保在FileController.java文件中正确导入了com.annotation包,可以使用以下代码进行导入:
```java
import com.annotation.*;
// 其他代码...
```
如果仍然出现错误,请检查com.annotation包是否存在于您的项目中,并且路径设置正确。
阅读全文