mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2025-04-06 02:48:00 +00:00
30 lines
793 B
Java
30 lines
793 B
Java
package tk.draganczuk.url;
|
|
|
|
import static spark.Spark.*;
|
|
|
|
public class App {
|
|
|
|
public static void main(String[] args) {
|
|
// Useful for developing the frontend
|
|
// http://sparkjava.com/documentation#examples-and-faq -> How do I enable automatic refresh of static files?
|
|
if (System.getenv("dev").equals("true")) {
|
|
String projectDir = System.getProperty("user.dir");
|
|
String staticDir = "/src/main/resources/public";
|
|
staticFiles.externalLocation(projectDir + staticDir);
|
|
} else {
|
|
staticFiles.location("/public");
|
|
}
|
|
|
|
port(Integer.parseInt(System.getProperty("port", "4567")));
|
|
|
|
get("/", (req, res) -> {
|
|
res.redirect("/index.html");
|
|
return "Redirect";
|
|
});
|
|
|
|
get("/all", Routes::getAll);
|
|
post("/new", Routes::addUrl);
|
|
get("/:shortUrl", Routes::goToLongUrl);
|
|
}
|
|
}
|