You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this step you’ll learn how to propagate a local change to the application through to <%= vars.product_short %>. As a simple change, we'll modify the version returned when accessing the root endpoint `/`.
To do this, change the message in the static `Info` variable in the `src/main/java/.../ProductService.class` file' to "I am awesome!".
Visiting your application at <a href="http://localhost:4567" target="_blank">http://localhost:4567</a>, you should receive the following response:
```json
{
"status": "I am awesome!",
"version": "1.0.0",
"appMode": null
}
```
Since you already have compiled and built your latest changes, you only need to push your changes to the app cloud. All you need to do is to execute `cf push` again: