Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Controllers code generation #83

Closed
d-r-q opened this issue Oct 13, 2015 · 1 comment
Closed

Controllers code generation #83

d-r-q opened this issue Oct 13, 2015 · 1 comment
Assignees
Milestone

Comments

@d-r-q
Copy link
Collaborator

d-r-q commented Oct 13, 2015

Create tool, which can be plugged into build systems to generate spring/jax-rs controllers by service interface.

For example for such service

public interface Users {

    UUID createUser(User user);

}

That tool should generate such spring controller:

@RestController
public interface UsersController {

    @RequestMapping("/users", method = RequestMethod.POST)
    UUID createUser(@RequestBody User user);

}
@d-r-q d-r-q added this to the Ideal milestone Oct 13, 2015
@d-r-q d-r-q self-assigned this Oct 13, 2015
@d-r-q
Copy link
Collaborator Author

d-r-q commented Dec 24, 2015

Looks like it's out of the scope of Restler

@d-r-q d-r-q closed this as completed Dec 24, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant