WEB API启动类异常

时间:2015-12-16 12:41:52

标签: c# asp.net-web-api

在我的web api中,我已经定义了如下的启动类,

[assembly: OwinStartup(typeof(MyProject.Cache.Startup))]

namespace MyProject.Cache
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {

            Configuration(app);
        }
    }
}

当我在下面运行项目时,异常就是这个,

  

类型'System.StackOverflowException'的未处理异常   发生在MyProject.Cache.dll,

有什么建议吗?

1 个答案:

答案 0 :(得分:3)

可能是,你有一个无休止的递归?

Configuration(IAppBuilder app)再次称之为自我。