G
G
greenbeard2016-04-06 13:55:26
Java
greenbeard, 2016-04-06 13:55:26

What tools and language to use for a RESTful api from scratch?

I started to write a thesis on the topic "Client-server application for android". I am well acquainted with android, but I am not familiar with backing at all. You need to write an API for simple requests. Can someone advise what would be easier to use for implementation?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
B
bromzh, 2016-04-06
@greenbeard

Try spark

import static spark.Spark.*;

public class HelloWorld {
    public static void main(String[] args) {
        get("/hello", (req, res) -> "Hello World");
    }
}

I
Ilya, 2016-04-06
@rpsv

Slim , SIlex , Lumen are the little brothers of Laravel, Symphony. With them, you can quickly raise the service, but in fact you don’t need more.

N
Nikita, 2016-04-06
@jetu

So spring boot

A
Alexander, 2016-04-06
@OneFive

Node.js / any language + graphQL, and REST in the trash.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question