17.2 Features

Features consist of additional dependencies and configuration to enable specific functionality in your application. Micronaut profiles define a large number of features, including features for many of the configurations provided by Micronaut, such as the Data Access Configurations

  1. $ mn create-app my-demo-app --features mongo-reactive

This adds the necessary dependencies and configuration for the MongoDB Reactive Driver in your application. You can view the available features using the --list-features flag for whichever create command you use.

  1. $ mn create-app --list-features # Output will be supported features for the create-app command
  2. $ mn create-function-app --list-features # Output will be supported features for the create-function-app command, different from above.