Laravel中ServiceProvider使用场景示例详解
|
ServiceProvider 的方式接入到 Laravel
有些朋友说,看了很多资料也不太明白到底是干嘛用的,今天我试图用大白话聊一聊。
设想一个场景,你写了一个CMS,那自然就包含了路由、配置、数据库迁移、帮助函数或类等。如果你要用的方式接入到,应该怎么办?
我们在上述用了 “接入到” 这样的字眼,本质上就是把这些信息告诉。如何告诉呢?使用提供的,默认要提供两个方法和。就是把实例化对象的方式注册到容器中。就是做一些把配置文件推到项目根目录下的目录下面,加载配置到或加载路由等动作。
顺序是先再。
源码验证
这点可以在源码中得到佐证:
干说也无趣,分析一个开源的更直观。
https://github.com/tymondesig...
开源组件的 ServiceProvider
看这个开源组件的是怎么写的:
https://github.com/tymondesig...- public function boot()
- {
- $path = realpath(__DIR__.'/../../config/config.php');
- $this->publishes([$path => config_path('jwt.php')], 'config');
- $this->mergeConfigFrom($path, 'jwt');
- $this->aliasMiddleware();
- $this->extendAuthGuard();
- }
复制代码 非常简单,把配置文件推到目录下,加载配置文件,给中间件设置一个别名,扩展一下。
看它的基类 https://github.com/tymondesig...- public function register()
- {
- $this->registerAliases();
- $this->registerJWTProvider();
- $this->registerAuthProvider();
- $this->registerStorageProvider();
- $this->registerJWTBlacklist();
- $this->registerManager();
- $this->registerTokenParser();
- $this->registerJWT();
- $this->registerJWTAuth();
- $this->registerPayloadValidator();
- $this->registerClaimFactory();
- $this->registerPayloadFactory();
- $this->registerJWTCommand();
- $this->commands('tymon.jwt.secret');
- }
- protected function registerNamshiProvider()
- {
- $this->app->singleton('tymon.jwt.provider.jwt.namshi', function ($app) {
- return new Namshi(
- new JWS(['typ' => 'JWT', 'alg' => $this->config('algo')]),
- $this->config('secret'),
- $this->config('algo'),
- $this->config('keys')
- );
- });
- }
- /**
- * Register the bindings for the Lcobucci JWT provider.
- *
- * @return void
- */
- protected function registerLcobucciProvider()
- {
- $this->app->singleton('tymon.jwt.provider.jwt.lcobucci', function ($app) {
- return new Lcobucci(
- new JWTBuilder(),
- new JWTParser(),
- $this->config('secret'),
- $this->config('algo'),
- $this->config('keys')
- );
- });
- }
复制代码 本质上就是注册一些实例化对象的方法到容器,用于后来的自动装配,解决注入的依赖问题。
所以本质上是个啥?它就是提供接入的方式,它本身并不实现具体功能,只是将你写好的功能以能识别的方式接入进去。
以上就是Laravel中ServiceProvider使用示例详解的详细内容,更多关于Laravel ServiceProvider的资料请关注脚本之家其它相关文章!
来源:https://www.jb51.net/program/290544itq.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|
|
|
发表于 2023-7-15 08:12:00
举报
回复
分享
|
|
|
|