在使用依赖注入时,是否有“新”的情况?
2022-09-03 01:48:38
依赖注入是否意味着您永远不需要“new”关键字?或者直接创建简单的叶类(如集合)是否合理?
在下面的示例中,我注入了比较器,query和dao,但SortedSet是直接实例化的:
public Iterable<Employee> getRecentHires()
{
SortedSet<Employee> entries = new TreeSet<Employee>(comparator);
entries.addAll(employeeDao.findAll(query));
return entries;
}