I would like to try out Google App Engine. I have an application written in
Spring MVC. My controllers look like this:
@RestController
@RequestMapping("/something")
public class Controller{
@RequestMapping(method = RequestMethod.POST)
@ResponseStatus(value = HttpStatus.OK)
@Override
public void add(@RequestBody Input input) {
*// dostuff*
}
}
Is this possible to deploy on Google App Engine? I would really really like
to avoid loosing this great abstraction and go back to stuff like this:
public void doGet(HttpServletRequest req, HttpServletResponse resp)
Is that possible or do I have to look at another hosting service?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-appengine/6215e747-1f68-45e3-8f97-99be3eb604e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.