As I get more into RESTful APIs, the (good) simplicity of the approach means that you generate a LOT of boilerplate code, and code that has to match in three or four different places, e.g. for a Jersey-based stack:
- HTML on the web page which provides controls (a button
Create Foo
) - JS on the web page which formulates the JSON and the request to create a Foo
- A
FooRest
class method to handle the request and create a Foo - A
Foo
class to instantiate, which will manipulate the data structure
Are there tools which provide a starting point for some or all of this code automatically, possibly starting from something straightforward like a JSON data structure? E.g., provide:
card: {
methods: [GET],
}
handOfCards: {
methods: [GET POST PUT DELETE],
}
and at the very least end up with Ajax requests, CardRest and HandOfCardsRest classes with the specified methods stubbed out, and Card and HandOfCards classes with properties or getters/setters?
As I get more into RESTful APIs, the (good) simplicity of the approach means that you generate a LOT of boilerplate code, and code that has to match in three or four different places, e.g. for a Jersey-based stack:
- HTML on the web page which provides controls (a button
Create Foo
) - JS on the web page which formulates the JSON and the request to create a Foo
- A
FooRest
class method to handle the request and create a Foo - A
Foo
class to instantiate, which will manipulate the data structure
Are there tools which provide a starting point for some or all of this code automatically, possibly starting from something straightforward like a JSON data structure? E.g., provide:
card: {
methods: [GET],
}
handOfCards: {
methods: [GET POST PUT DELETE],
}
and at the very least end up with Ajax requests, CardRest and HandOfCardsRest classes with the specified methods stubbed out, and Card and HandOfCards classes with properties or getters/setters?
Share Improve this question edited Aug 11, 2013 at 3:57 Alex Feinman asked Jun 15, 2012 at 15:17 Alex FeinmanAlex Feinman 5,5731 gold badge33 silver badges49 bronze badges 2- I really hope this gets a good answer. I could absolutely use that! – W. Goeman Commented Jun 16, 2012 at 10:03
- @W.Goeman, then best to share the answer to give it more visibility... it looks like views have stalled out. – Alex Feinman Commented Jun 20, 2012 at 14:22
5 Answers
Reset to default 3Have you tried Backbone.js? It is a JavaScript library that handles REST Ajax requests for you. It allows you to define your models to wrap the data and provides setters, getters, save and delete functions, etc.
It also allows you to bind the models to views which generate the UI HTML.
I think nearly any *rails application does all of this for you. Grails is my favorite right now, and once you get the initial setup done (a single mand) you create domain classes with another mand.
Once those are created, you can generate both views (html) and controllers for handling all of these actions with a single mand, and the boiler plate is sufficient for a lot of initial sites. It will even create test cases for you, although you'll need to define what the actual tests do. You can program it by convention very easily, or create your own mappings from URLs -> controller actions. It has a ton of plugin support and easily handles remote submission of forms (via javascript) built in.
It doesn't take a json data structures for creation, but the domains are very easily created (using groovy) and it autowires getter/setters, service injections, etc as it is based on the Spring Framework.
Your goal should probably not be code generation of boilerplate but actually writing less code.
Spark is a Java micro web framework based on Sinatra.
Here's some example code:
import static spark.Spark.*;
import spark.*;
public class HelloWorld {
public static void main(String[] args) {
get(new Route("/") {
@Override
public Object handle(Request request, Response response) {
// .. Show something ..
}
});
post(new Route("/") {
@Override
public Object handle(Request request, Response response) {
// .. Create something ..
}
});
put(new Route("/") {
@Override
public Object handle(Request request, Response response) {
// .. Update something ..
}
});
delete(new Route("/") {
@Override
public Object handle(Request request, Response response) {
// .. annihilate something ..
}
});
options(new Route("/") {
@Override
public Object handle(Request request, Response response) {
// .. appease something ..
}
});
}
}
An alternate (or addition) to Juan's answer, you might want to check out Knockback.js , which takes the best of Knockout and adds the best of Backbone.js . Backbone has support for RESTful API's via it's "sync" functions. Quoting their website:
The method signature of Backbone.sync is sync(method, model, [options])
method – the CRUD method ("create", "read", "update", or "delete") model – the model to be saved (or collection to be read) options – success and error callbacks, and all other jQuery request options
You might want to try a different approach altogether and try somethink like project lombok. It will at least let you nix all your getters and setters.