mystep 中如何获取 properties里的东西?
在一个java类中又该如何获取。
6 回复
@wendal MainSetup 写错了。 没有ioc 环境的话该怎么获取?
你指的没Ioc是整个Mvc应用都不需要Ioc, 还是说拿不到ioc容器的地方
如果是后者
Mvcs.ctx().getDefaultIoc().get(XXXXX.class, xxxx)
前者, 直接new PropertiesProxy或者用jdk的Properties完事
@wendal 是在没有ioc容器的地方。 取db.properties里的值。用new PropertiesProxy 取不出来啊
PropertiesProxy pp= new PropertiesProxy();
String driver= pp.get("db.driver");
System.out.println(driver);
@wendal 谢谢
添加回复
请先登陆