如何在ASP.NET Core类库项目中读取配置文件详解
前言
最近有朋友问如何在.net core类库中读取配置文件,当时一下蒙了,这个提的多好,我居然不知道,于是这两天了解了相关内容才有此篇文章的出现,正常来讲我们在应用程序目录下有个appsettings.json文件对于相关配置都会放在这个json文件中,但是要是我建立一个类库项目,对于一些配置比如密钥或者其他需要硬编码的数据放在json文件中,在.net core之前配置文件为web.config并且有相关的类来读取节点上的数据,现如今在.net core中为json文件,那么我们该如何做?本文就此应运而生。
.net core类库项目读取json配置文件
在应用程序目录下添加json文件是进行如下配置:
var builder = new configurationbuilder() .setbasepath(env.contentrootpath) .addjsonfile("appsettings.json", optional: true, reloadonchange: true) .addjsonfile($"appsettings.{env.environmentname}.json", optional: true) .addenvironmentvariables(); configuration = builder.build();
然后读取配置文件的节点,如下:
public void configureservices(iservicecollection services) { services.configure<blogviewmodel>(configuration.getsection("jeffckysettings")); ...... }
但是如果项目是在类库中呢,当然我们也可以将配置值放在应用程序下的appsettings.json中,但是为了不让其json文件中看起来显得非常臃肿同时在类库中的配置数据我们理应放在类库中来统一管理,所以我们得另外再想方案,总不能在类库中建立startup.cs类,再来实例化configuration吧,这样想想应该也是可以,我没尝试过,难道就没有很简单的方式么,难道就不能像.net core之前用类来读取web.config我们只需要给出键而得到值吗?或者说通过强类型配置来统一管理配置数据,这个才应该是我们尝试的方向。好了,说了这么多,我们就开干。我们首先来复习下.net core中是如何获取应用程序路径的。
.net core获取应用程序路径
在.net 4.x之前获取当前应用程序根目录路径和名称可以通过如下获取
var basepath = appdomain.currentdomain.basedirectory; var appname = appdomain.currentdomain.applicationidentity.fullname;
当然也可以通过如下来获取应用程序根目录而不是得到bin目录
directory.getcurrentdirectory()
在.net core中获取bin目录路径通过如下来获取更加简洁。
appcontext.basedirectory
在.net 4.x之前获取应用程序集名称通过如下来获取:
assembly.getentryassembly().getname().name;
在.net core中通过如下来获取:
var name = typeof(t).gettypeinfo().assembly.getname().name;
版本通过如下来获取(.net core也一样):
assembly.getentryassembly().getname().version.tostring()
在类库项目中我们利用强类型配置来实现读取配文件数据,我们首先需要下载如下扩展。
在configurationbuilder类中如下一个add添加方法:
// // 摘要: // adds a new configuration source. // // 参数: // source: // the configuration source to add. // // 返回结果: // the same microsoft.extensions.configuration.iconfigurationbuilder. public iconfigurationbuilder add(iconfigurationsource source);
对于addjsonfile扩展方法来添加json文件名,文件路径已经通过setbasepath()方法来实现,一切配置都是基于iconfigurationbuilder接口,其中就有一个jsonconfigurationsource类,实现如下:
// // 摘要: // represents a json file as an microsoft.extensions.configuration.iconfigurationsource. public class jsonconfigurationsource : fileconfigurationsource { public jsonconfigurationsource(); // // 摘要: // builds the microsoft.extensions.configuration.json.jsonconfigurationprovider // for this source. // // 参数: // builder: // the microsoft.extensions.configuration.iconfigurationbuilder. // // 返回结果: // a microsoft.extensions.configuration.json.jsonconfigurationprovider public override iconfigurationprovider build(iconfigurationbuilder builder); }
我们再看其父类就有一个添加json文件路径的方法,如下:
所以我们从这里可以看出添加json文件的方法除了通过扩展方法来实现外还有直接实例化jsonconfigurationsource来实现,如下:
iconfiguration config = new configurationbuilder() .setbasepath(currentclassdir) .addjsonfile("appsettings.json", false, true) .add(new jsonconfigurationsource { path = "appsettings.json", optional = false, reloadonchange = true }) .build();
上述添加json文件皆可,我发现添加json文件必须设置json文件所在的目录即必须首先要设置setbasepath方法,否则会报如下错误:
我们搞个测试json文件放在当前项目(studyefcore.data)中如下:
最终读取类库项目json配置文件,将其封装起来就成了如下这个样子:
public class jsonconfigurationhelper { public t getappsettings<t>(string key) where t : class, new() { var basedir = appcontext.basedirectory; var indexsrc = basedir.indexof("src"); var subtosrc = basedir.substring(0, indexsrc); var currentclassdir = subtosrc + "src" + path.directoryseparatorchar + "stutdyefcore.data"; iconfiguration config = new configurationbuilder() .setbasepath(currentclassdir) .add(new jsonconfigurationsource { path = "appsettings.json", optional = false, reloadonchange = true }) .build(); var appconfig = new servicecollection() .addoptions() .configure<t>(config.getsection(key)) .buildserviceprovider() .getservice<ioptions<t>>() .value; return appconfig; } }
由上有一个还未解决的问题就是如何得到当前类库项目的路径,没有想到一个好的法子,不知看到此文的你有何高见。简短的调用则是如下:
var config = new jsonconfigurationhelper(); var person = config.getappsettings<person>("jeffckysettings"); var name = person.name; var age = person.age;
结果如下:
我们将其类修改为configurationmanager,然后将其getappsettings方法定义为静态方法,最后如下调用是不是满足了在.net core之前读取web.config中配置数据的问题。哈哈哈:
var person = configurationmanager.getappsettings<person>("jeffckysettings");
总结
本节我们详细讲解了在.net core类库项目中如何读取json配置中的数据但是还是有点不足,你有何高见?