如果在springboot项目中引用注释报错:Value cannot be resolved to a type

我也是刚刚开始学习spring:最近发现主要你写的注释报这个错,基本都是没有相应的import对应的依赖类:

package com.itheima.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource("classpath:jdbc.properties")
/*配置类*/

public class JdbcConfig {
    @Value("${jdbc.url}")
    String url;

}
 

你可能感兴趣的:(如果在springboot项目中引用注释报错:Value cannot be resolved to a type)