• Spring Boot Configuration Annotation Proessor not found in classpath解决办法


    From: https://www.cnblogs.com/whtgjy/p/9438317.html

    1. 出现spring boot Configuration Annotation Proessor not found in classpath的提示是在用了@ConfigurationProperties这个注解时,所以问题出现在ConfigurationProperties注解。
    2. 根据提示的not found in classpath,查询此注解的使用关于怎么指定classpath,进而查询location,spring boot1.5以上版本@ConfigurationProperties取消location注解

    解决办法,引入Maven依赖,在pom.xml文件中加入

    <dependency>
       <groupId> org.springframework.boot </groupId>
       <artifactId> spring-boot-configuration-processor </artifactId>
       <optional> true </optional>
    </dependency>
  • 相关阅读:
    Django模板系统
    __new__与__init__的区别
    django中models field详解
    快速入门mysql
    jq2
    jq
    前端 js 部分
    前端 js
    前端 css
    前端 table form
  • 原文地址:https://www.cnblogs.com/joeblackzqq/p/10899749.html
Copyright © 2020-2023  润新知