Package org.springframework.boot.configurationprocessor.fieldvalues.javac

Examples of org.springframework.boot.configurationprocessor.fieldvalues.javac.JavaCompilerFieldValuesParser


  public synchronized void init(ProcessingEnvironment env) {
    super.init(env);
    this.metadata = new ConfigurationMetadata();
    this.typeUtils = new TypeUtils(env);
    try {
      this.fieldValuesParser = new JavaCompilerFieldValuesParser(env);
    }
    catch (Throwable ex) {
      this.fieldValuesParser = FieldValuesParser.NONE;
      logWarning("Field value processing of @ConfigurationProperty meta-data is "
          + "not supported");
View Full Code Here

TOP

Related Classes of org.springframework.boot.configurationprocessor.fieldvalues.javac.JavaCompilerFieldValuesParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.