All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.cloud.Start.mvel Maven / Gradle / Ivy

The newest version!
package @{projectPackage}.web;

import com.google.sitebricks.At;
import com.google.sitebricks.http.Get;

/**
 * Home page. Looks for a sitebricks template in web/ named Start.html
 */
@{'@'}At("/")
public class Start {
  private String message;

  @{'@'}Get
  void display() {
    message = "Hello from sitebricks!";
  }

  public String getMessage() {
    return message;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy