Springboot 启动异常Unable to read meta-data for class

转自:http://www.infoq.live/links, 原创作者: 陈, 伟

  1. 问题描述

Spring Boot Application在启动时报如下错误
Unable to read meta-data for class

  1. 分析定位
    自定义starter中spring.factories配置多个configuration时,彼此需要\来间隔
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
cn.xxx.xxx.secret.SecretAutoConfiguration,
cn.xxx.xxx.secret.modules.cors.WebMvcConfiguration

正确配置:

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
cn.xxx.xxx.secret.SecretAutoConfiguration,\
cn.xxx.xxx.secret.modules.cors.WebMvcConfiguration

你可能感兴趣的:(spring,boot,java)