You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by "Aaron Siri (JIRA)" <ji...@apache.org> on 2013/08/07 18:32:47 UTC

[jira] [Created] (DELTASPIKE-399) Incorporate Solder's ResourceLoader features into DeltaSpike

Aaron Siri created DELTASPIKE-399:
-------------------------------------

             Summary: Incorporate Solder's ResourceLoader features into DeltaSpike
                 Key: DELTASPIKE-399
                 URL: https://issues.apache.org/jira/browse/DELTASPIKE-399
             Project: DeltaSpike
          Issue Type: New Feature
          Components: Core
    Affects Versions: 0.4
            Reporter: Aaron Siri
            Priority: Minor


Seam 3's Solder module had some nice resource loading functionality within the org.jboss.solder.resourceLoader packages.  With it you could do the following:

// Load a properties file
@Inject @Resource("app.properties")
private Properties appProperties;

or:

@Inject
private ResourceProvider resourceProvider

public Properties getHostProperties() {
   String hostname = java.net.InetAddress.getLocalHost().getHostName();
   return resourceProvider.loadPropertiesBundle(hostname + ".properties");
}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira