You want to add a custom property app.title in application.properties and access it in your Spring Boot code. Which of these steps is correct?
AAdd <code>app.title=MyApp</code> in properties and access it with <code>System.getenv("app.title")</code>
BAdd <code>app.title: MyApp</code> in properties and read it with <code>System.getProperty("app.title")</code>
CAdd <code>app.title=MyApp</code> in properties and use <code>@Value("${app.title}")</code> in code
DAdd <code>app.title=MyApp</code> in properties and use <code>@Autowired String app.title</code> in code