You might want to take a look at the App Engine docs <https://cloud.google.com/appengine/docs/java/> which may answer some of your questions. You may find that App Engine may replace some parts of this stack and others may not work well or at all. For example, you'll likely need to use Task Queues <https://cloud.google.com/appengine/docs/java/taskqueue/> and Cron Tasks <https://cloud.google.com/appengine/docs/java/config/cron?hl=en> instead of Spring Scheduler. Running Spring Boot on top of App Engine is largely redundant and there are other issues <http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#cloud-deployment-gae> which require workarounds. For Spring Data, App Engine provides its own EntityManagerFactory and JPA implementation <https://developers.google.com/eclipse/docs/cloudsql-jpatools>.
You have access to managed MySQL instances in the form of Google Cloud SQL <https://cloud.google.com/sql/docs/introduction>. Spring Framework and Spring Rest are known to work, and you will have no problems with any JavaScript frameworks like Bootstrap or AngularJS. Cheers, Adam Cloud Platform Support On Thursday, December 3, 2015 at 9:56:24 AM UTC-5, Mvs Prasad wrote: > > If we use Google App Engine to deploy on Google cloud with the following > technology stack – Is Google App Engine will support all these. > > • *Core Java* > > • *Spring Framework 4.X* > > • *Spring Boot* > > • *Spring REST and HATEOAS* > > • *Spring Data (JPA)* > > • *Spring Scheduler* > > • *MySQL* > > • *Bootstrap + HTML5* > > • *AngularJS* > -- 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 http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/15d0685a-d7f0-4068-a3cb-83e02ec712e3%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
