You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tamaya.apache.org by "Jürg Spiess (JIRA)" <ji...@apache.org> on 2016/10/12 10:51:20 UTC

[jira] [Created] (TAMAYA-181) Warning-"Flood" from SimplePropertySource

Jürg Spiess created TAMAYA-181:
----------------------------------

             Summary: Warning-"Flood" from SimplePropertySource
                 Key: TAMAYA-181
                 URL: https://issues.apache.org/jira/browse/TAMAYA-181
             Project: Tamaya
          Issue Type: Bug
          Components: Core
    Affects Versions: 0.2-incubating
         Environment: any
            Reporter: Jürg Spiess
            Priority: Minor
             Fix For: 0.3-incubating


If the constructor
{code}public SimplePropertySource(URL propertiesLocation){code} is used, STDOUT is flooded with warnings about "missing name".

Solution:
{code}
    public SimplePropertySource(URL propertiesLocation) {
        super(0);
        // switch the next 2 lines: name should be set BEFORE load(...)!
        this.properties = load(propertiesLocation);
        this.name = propertiesLocation.toString();
    }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)