我正在使用带有 UmbracoApiController 的 Umbraco 6.1,它的构造函数中注入了 IUnitOfWork。为了注入依赖项,我使用 Unity,就像我过去使用标准 Web API 项目一样。通常,我在 Global.asax.cs 中设置统一。由于 Umbraco 没有这个,我创建了自己的 UmbracoEvents 处理程序,它继承自 IApplicationEventHandler,并具有以下方法:
- OnApplicationInitialized
- OnApplicationStarting
- OnApplicationStarted
- 配置API
在 OnApplicationStarted 方法中,我设置了我的 EF 数据库、db 初始化程序等,并调用 ConfigureApi 来设置 Unity。我的 OnApplication Started 和 ConfigureApi 方法如下所示:
public void OnApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
_applicationContext = applicationContext;
_umbracoApplication = umbracoApplication;
_contentService = ApplicationContext.Current.Services.ContentService;
this.ConfigureApi(GlobalConfiguration.Configuration);
Database.SetInitializer(null);
PropertySearchContext db = new PropertySearchContext();
db.Database.Initialize(true);
}
private void ConfigureApi(HttpConfiguration config)
{
var unity = new UnityContainer();
unity.RegisterType<PropertiesApiController>();
unity.RegisterType<IUnitOfWork, UnitOfWork>(new HierarchicalLifetimeManager());
config.DependencyResolver = new IoCContainer(unity);
}
我的控制器代码:
public class PropertiesApiController : UmbracoApiController
{
private readonly IUnitOfWork _unitOfWork;
public PropertiesApiController(IUnitOfWork unitOfWork)
{
if(null == unitOfWork)
throw new ArgumentNullException();
_unitOfWork = unitOfWork;
}
public IEnumerable GetAllProperties()
{
return new[] {"Table", "Chair", "Desk", "Computer", "Beer fridge"};
}
}
我的范围容器/IoC 容器代码:(根据http://www.asp.net/web-api/overview/extensibility/using-the-web-api-dependency-resolver)
public class ScopeContainer : IDependencyScope
{
protected IUnityContainer container;
public ScopeContainer(IUnityContainer container)
{
if (container == null)
{
throw new ArgumentNullException("container");
}
this.container = container;
}
public object GetService(Type serviceType)
{
if (container.IsRegistered(serviceType))
{
return container.Resolve(serviceType);
}
else
{
return null;
}
}
public IEnumerable<object> GetServices(Type serviceType)
{
if (container.IsRegistered(serviceType))
{
return container.ResolveAll(serviceType);
}
else
{
return new List<object>();
}
}
public void Dispose()
{
container.Dispose();
}
}
public class IoCContainer : ScopeContainer, IDependencyResolver
{
public IoCContainer(IUnityContainer container)
: base(container)
{
}
public IDependencyScope BeginScope()
{
var child = this.container.CreateChildContainer();
return new ScopeContainer(child);
}
}
我的 IUnitOfWork 代码:
public interface IUnitOfWork : IDisposable
{
GenericRepository<Office> OfficeRepository { get; }
GenericRepository<Property> PropertyRepository { get; }
void Save();
void Dispose(bool disposing);
void Dispose();
}
我的 UnitOfWork 实施:
public class UnitOfWork : IUnitOfWork
{
private readonly PropertySearchContext _context = new PropertySearchContext();
private GenericRepository<Office> _officeRepository;
private GenericRepository<Property> _propertyRepository;
public GenericRepository<Office> OfficeRepository
{
get
{
if (this._officeRepository == null)
{
this._officeRepository = new GenericRepository<Office>(_context);
}
return _officeRepository;
}
}
public GenericRepository<Property> PropertyRepository
{
get
{
if (this._propertyRepository == null)
{
this._propertyRepository = new GenericRepository<Property>(_context);
}
return _propertyRepository;
}
}
public void Save()
{
_context.SaveChanges();
}
private bool disposed = false;
public virtual void Dispose(bool disposing)
{
if (!this.disposed)
{
if (disposing)
{
_context.Dispose();
}
}
this.disposed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
我之前已经多次使用带有 MVC4/WebAPI 控制器的 unity/DI 和 UnitOfWork 的这个实现,没有问题,所以我认为它是 Umbraco 特定的。
我还调试了应用程序并确保它点击 OnApplicationStarted 并且它的参数不为空。
控制器中的 GetAllProperties 方法只是一个测试方法,以确保一切正常,但是,当我尝试访问此操作时,我收到错误:
“IUnitOfWork 类型没有可访问的构造函数”
有没有人有使用 Umbraco 6.1 的经验,它是带有依赖注入/Unity 的 UmbracoApiController?
另外,在不相关的说明中,有没有办法在操作中返回 JSON 而不是 XML?在 Web API 中,您只需在 WebApi.config 中定义格式化程序,但在 Umbraco 中没有。
谢谢,贾斯汀