Laravel中Service Container是什么概念?

What is the concept of Service Container in Laravel?

我开始研究Laravel,但我不明白服务容器的概念。

它是如何工作的以及开发人员需要了解什么才能在 Laravel 中充分利用这个概念?

Laravel 中的 Service Container 是应用程序的依赖注入容器和注册表

与手动创建对象相比,使用服务容器的优势在于:

能够管理 class 对象创建的依赖关系

你定义一个对象应该如何在应用程序的一个点(绑定)创建,每次你需要创建一个新的实例,你只需将它请求给服务容器,它就会为你创建它,以及所需的依赖项

例如,不是使用 new 关键字手动创建对象:

//every time we need YourClass we should pass the dependency manually
$instance = new YourClass($dependency);

您可以在服务容器上注册绑定:

//add a binding for the class YourClass 
App::bind( YourClass::class, function()
{
    //do some preliminary work: create the needed dependencies
    $dependency = new DepClass( config('some.value') );

    //create and return the object with his dependencies
    return new YourClass( $dependency );
});

并通过服务容器创建实例:

//no need to create the YourClass dependencies, the SC will do that for us!
$instance = App::make( YourClass::class );

接口与具体的绑定 classes

使用 Laravel 自动依赖注入,当应用程序的某些部分(即在控制器的构造函数中)需要接口时,服务容器会自动实例化一个具体的 class。更改绑定上的具体 class,将更改通过所有应用程序实例化的具体对象:

//everityme a UserRepositoryInterface is requested, create an EloquentUserRepository 
App::bind( UserRepositoryInterface::class, EloquentUserRepository::class ); 

//from now on, create a TestUserRepository 
App::bind( UserRepositoryInterface::class, TestUserRepository::class );

将服务容器用作注册表

您可以在容器上创建和存储唯一的对象实例,稍后取回它们:使用 App::instance 方法进行绑定,从而将容器用作注册表。

// Create an instance.
$kevin = new User('Kevin');

// Bind it to the service container.
App::instance('the-user', $kevin);

// ...somewhere and/or in another class...

// Get back the instance
$kevin = App::make('the-user'); 

最后一点,服务容器本质上是 Application 对象:它扩展了 Container class,获得容器的所有功能

Laravel 容器为来自服务的完整应用程序创建实例 (class) 我们不需要像

这样为我们的应用程序创建 instance
$myclass = new MyClass();
$mymethod = $myclass->myMethod();

App::bind

首先,我们将查看 App class 的绑定静态方法。 bind 只是将您的 class instance(对象) 与应用程序绑定,仅此而已。

App::bind('myapp', function(){
    return new MyClass();
});

现在,我们可以通过使用 make App class.

的静态方法将此对象用于我们的应用程序
$myclass = App::make(MyClass::class);
$mymethod = $myclass->myMethod();

App::singleton

在上面的示例中,当我们要调用 make 方法时,它会在每次 class 的新 instance 时生成,所以 Laravel 有很好的解决方案 Singleton 我们可以通过 singleton 方法将 object 绑定到我们的应用程序。

App::singleton(MyClass::class, function(){
    return new MyClass();
});

我们可以通过make方法解决。现在,我们总是从这个方法收到完全相同的实例。

$myclass = App::make(MyClass::class);
$mymethod = $myclass->myMethod();

应用程序::实例 我们可以将实例绑定到容器,我们将始终使用 instance 方法 return 完全相同的实例。

$myclass = new MyClass();
App::instance(MyClass::class, $myclass);

我们可以通过

来解决
$myclass = App::make(MyClass::class);

我们可以通过

绑定接口
App::instance(MyClassInterface::class, new MyClass);

Implementation Binding

Yaa,我们有一个问题,我们如何在我们的应用程序中实现绑定?我们可以在 AppServiceProvider

中实现绑定

app/Providers/AppServiceProvider.php

namespace App\Providers;

use App\SocialProvider;
use App\TwitterSocialProvider;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
  /**
   * Bootstrap any application services.
   *
   * @return void
   */
   public function boot()
  {

  }

   /**
   * Register any application services.
   *
   * @return void
   */
   public function register()
   {
      $this->app->bind(
        MyClassInterface::class,
        MyClass::class
      );
  }
}

Conclusion: Service container helps to create object of class or services.