Getting started with Phoenix is easy

Getting started

The following other dependencies are required inside your Spring Boot project:

                                    
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
                                    
                                

Finally, create a configuration file for your Spring Boot app and import the PhoenixConfig configuration:

                                    
@Configuration
@EnableConfigurationProperties()
@Import({PhoenixConfig.class})
public class ApplicationConfiguration {
    
}