1、工程A取不到本身的配置信息????
2、显示结果为null
package com.imooc.config;
import java.net.MalformedURLException;
import java.net.URL;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import com.googlecode.jsonrpc4j.spring.AutoJsonRpcClientProxyCreator;
import com.imooc.api.ProductRpc;
@Configuration
@ComponentScan(basePackageClasses={ProductRpc.class})
@EnableConfigurationProperties(RpcProperties.class)
public class RpcConfig {
@Resource
privat