Back
You can use the below framework which is similar to expressjs:
Express app = new Express();app.get("/", (req, res) -> { res.send("Hello World");});app.listen();
Express app = new Express();
app.get("/", (req, res) -> {
res.send("Hello World");
});
app.listen();
I hope this will help.
Want to become a Java Expert? join Java Certification now!!
31k questions
32.8k answers
501 comments
693 users