在我的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,
有什么建议吗?
答案 0 :(得分:3)
可能是,你有一个无休止的递归?
Configuration(IAppBuilder app)
再次称之为自我。