documentation/manual/working/javaGuide/advanced/extending/JavaPlayModules.md
Note: This page covers the new [[module system|JavaDependencyInjection#Play-libraries]] to add new functionality to Play.
The deprecated
play.Pluginsystem is removed as of 2.5.x.
A [[module|JavaDependencyInjection#Play-libraries]] can be written using any dependency injection framework. However, when you want to extend Play, you need to avoid dependencies on a specific framework so that your extension can work independently of the dependency injection. Play previously used the play.Plugin system for this purpose, but in 2.5.x, Plugins have been replaced with Play modules.
A Play module is a class that extends play.inject.Module and can be registered with Play without relying explicitly on a particular dependency injection framework. This allows everyone to use Play modules.
A list of Play modules are available in the [[module directory|ModuleDirectory]].
In addition, because Play uses Play modules for built-in functionality, a Play module must be used to replace or augment built-in functionality.
Creating a Play module is simple:
For more information, see the "Create a Module class" section of [[Plugins to Modules|PluginsToModules#Create-a-Module-class]].
By default, Play will load any class called Module that is defined in the root package (the "app" directory) or
you can define them explicitly inside the reference.conf or the application.conf:
play.modules.enabled += "modules.MyModule"
Please see [[migration page|PluginsToModules#Wire-it-up]] and [[the dependency injection documentation|JavaDependencyInjection#Play-libraries]] for more details.
A module can detect when Play shutdown occurs by injecting the play.inject.ApplicationLifecycle interface into the singleton instance and adding a shutdown hook.
Please see the [[ApplicationLifecycle example|PluginsToModules#Create-a-Module-class]] and [[ApplicationLifecycle reference|JavaDependencyInjection#Stopping/cleaning-up]] for more details.
Play Modules can be tested using Play's built in test functionality, by using the GuiceApplicationBuilder and adding a binding to the module.
Please see [[Testing with Guice|JavaTestingWithGuice#Bindings-and-Modules]] for more details.
The Modules.locate(env, conf) method will display a list of all available Play modules in an application. There is no corresponding Java class.
There are some cases where Play provides a built-in module that must be overridden.
For example, [[WSClient|JavaWS]] functionality is implemented by the WSClient interface and backed by AhcWSClientProvider. If you write a replacement class MyWSClient that extends WSClient, you can bind it with:
Testing the application should be done using the overrides method to replace the existing implementation:
Because the AhcWSModule is loaded automatically in reference.conf, you must first [[disable|JavaDependencyInjection#Excluding-modules]] the default module before adding the replacement module:
play.modules.disabled += "play.libs.ws.ahc.AhcWSModule"
play.modules.enabled += "modules.MyWSModule"
You should not disable existing modules in reference.conf when publishing a Play module, as it may have unexpected consequences. Please see the [[migration page|PluginsToModules#Wire-it-up]] for details.