标签: dependency-injection jboss5.x java-ee-5
是否有更好的方法将系统属性注入JBoss 5.1上的Bean中?
尝试过:
@Service public class StartupBean implements StartupBeanManagement { @Resource("prop") String property; }
但是没有运气。 基本上我可以打电话给 System.getProperty(..),但想知道是否存在更好的解决方案。