Skip to content

Instantly share code, notes, and snippets.

@fercomunello
Created August 18, 2021 08:04
Show Gist options
  • Save fercomunello/0999370f243963a14f7947808a9498d7 to your computer and use it in GitHub Desktop.
Save fercomunello/0999370f243963a14f7947808a9498d7 to your computer and use it in GitHub Desktop.
// Exemplo alternativo da implementação
import org.eclipse.krazo.engine.Viewable;
@GET
public Viewable welcome(@QueryParam("user") String user) {
var currentDate = LocalDate.now();
this.models.put("currentDate", currentDate);
this.models.put("user", user != null && !user.isBlank() ? user : "Guest");
return new Viewable("welcome.jsp");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment