Exemplo n.º 1
0
 // tag::index2[]
 @View
 @Route("/show/{location}")
 public Response.Content index(String location) {
   Map<String, Object> parameters = new HashMap<String, Object>();
   parameters.put("location", location);
   parameters.put("temperature", weatherService.getTemperature(location));
   return index.with(parameters).ok();
 }
Exemplo n.º 2
0
Arquivo: A.java Projeto: haint/juzu
 @View
 public Response.Content index() {
   return index.ok();
 }
Exemplo n.º 3
0
Arquivo: A.java Projeto: nscavell/juzu
 @View
 public void index() {
   index.render();
 }
Exemplo n.º 4
0
 @View
 @Route("/")
 public Response.Content index() {
   return index.ok();
 }
Exemplo n.º 5
0
 @View
 public Response.Content index() throws IOException {
   return index.ok();
 }