Migrating Configuration From ASP.NET MVC 5 to MVC

相关阅读:http://blog.developers.ba/read-config-file-in-asp-net-vnext/

原文:http://aspnetmvc.readthedocs.org/projects/mvc/en/latest/migration/migratingconfig.html

By Steve SmithScott Addie

In the previous article, we began migrating an ASP.NET MVC 5 project to MVC 6. In this article, we migrate the configuration feature from ASP.NET MVC 5 to ASP.NET MVC 6.

In this article:

You can download the finished source from the project created in this article here.

Setup Configuration

ASP.NET 5 and ASP.NET MVC 6 no longer use the Global.asax and web.config files that previous versions of ASP.NET utilized. In earlier versions of ASP.NET, application startup logic was placed in anApplication_StartUp method within Global.asax. Later, in ASP.NET MVC 5, a Startup.cs file was included in the root of the project; and, it was called using an OwinStartupAttribute when the application started. ASP.NET 5 (and ASP.NET MVC 6) have adopted this approach completely, placing all startup logic in the Startup.cs file.

The web.config file has also been replaced in ASP.NET 5. Configuration itself can now be configured, as part of the application startup procedure described in Startup.cs. Configuration can still utilize XML files, but typically ASP.NET 5 projects will place configuration values in a JSON-formatted file, such asappsettings.json. ASP.NET 5’s configuration system can also easily access environment variables, which can provide a more secure and robust location for environment-specific values. This is especially true for secrets like connection strings and API keys that should not be checked into source control.

For this article, we are starting with the partially-migrated ASP.NET MVC 6 project from the previous article. To setup configuration using the default MVC 6 settings, add the following constructor and property to the Startup.cs class located in the root of the project:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public Startup(IHostingEnvironment env)
{
    // Set up configuration sources.
    var builder = new ConfigurationBuilder()
        .AddJsonFile("appsettings.json")
        .AddEnvironmentVariables();
    Configuration = builder.Build();
}

public IConfigurationRoot Configuration { get; set; }

Note that at this point the Startup.cs file will not compile, as we still need to add the following usingstatement:

using Microsoft.Extensions.Configuration;

Add an appsettings.json file to the root of the project using the appropriate item template:

../_images/add-appsettings-json.png

Migrate Configuration Settings from web.config

Our ASP.NET MVC 5 project included the required database connection string in web.config, in the<connectionStrings> element. In our MVC 6 project, we are going to store this information in theappsettings.json file. Open appsettings.json, and note that it already includes the following:

1
2
3
4
5
6
7
{
	"Data": {
		"DefaultConnection": {
			"ConnectionString": "Server=(localdb)\\MSSQLLocalDB;Database=_CHANGE_ME;Trusted_Connection=True;"
		}
	}
}

In the highlighted line depicted above, change the name of the database from _CHANGE_ME. We are going to point to a new database, which will be named NewMvc6Project to match our migrated project name.

Summary

ASP.NET 5 places all startup logic for the application in a single file, in which the necessary services and dependencies can be defined and configured. It replaces the web.config file with a flexible configuration feature that can leverage a variety of file formats, such as JSON, as well as environment variables.



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值