[google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-04 Thread Þórir Gunnarsson
Lately I have been getting some mixed signals about what should be the configuration for a java based App Engine standard backend using endpoints. What I'm looking for is guidelines from Google or the group what would be best practices. The recommended configuration should be production ready a

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-04 Thread Jeff Schnitzer
Your path of least resistance is to use Maven (as opposed to Gradle or Ant/Ivy). If you’re working in Java, you definitely want an IDE - Eclipse and IntelliJ both have their following. I think most people will be happier with IntelliJ but you have to pay for it. There are two viable maven plugins

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-04 Thread Þórir Gunnarsson
I am currently using Maven and IntelliJ which in itself is fine. Most of my issues are with the Maven plugins and recently endpoints versions. The com.google.cloud.tools plugin is not entirely there it seems, but in a lot of documentation from Google it is the go-to plugin. I tried to switch to

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-04 Thread Jeff Schnitzer
You’re not crazy, I have also seen that problem. Use the com.google.appengine maven plugin for the dev server for now. I think this is the most relevant (albeit cryptic) issue that tracks that particular problem: https://github.com/GoogleCloudPlatform/app-maven-plugin/issues/158 The com.google.to

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-06 Thread Þórir Gunnarsson
Does anyone have any insights into endpoints v1 vs. endpoints v2? Any real life success stories perhaps? We recently switched to endpoints v2 but without the endpoints management functionality, I'm hesitant to go all in if this isn't being used in production systems by at least a few people, or

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-07 Thread 'Adam (Cloud Platform Support)' via Google App Engine
You can still use Endpoints v2 tooling with the 'com.google.appengine' plugin as it is handled by endpoints-framework-tools and gcloud service-management. The only difference should be the version of the dev server you launch for local development. What specific issues with endpoints management

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-07 Thread Þórir Gunnarsson
I didn't encounter any specific issues with the endpoints management functionality as such, didn't go that far, the documentation is just all referencing the com.google.cloud.com tools and I wanted to get some feedback on where these things are at before going into implementation. >From what I

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-10 Thread 'Adam (Cloud Platform Support)' via Google App Engine
The 'com.google.appengine' development server works without issues with endpoints management in all of the v2 projects I've tested it with. The only changes I've needed are the following: 1) In the pom.xml for the project, change 'com.google.cloud.tools' to 'com.google.appengine' and change the

Re: [google-appengine] Recommended configuration for a java based App Engine standard application?

2017-04-11 Thread Þórir Gunnarsson
Excellent news, thanks for looking into this. I will add enabling the endpoints v2 tooling to my todo list, the feature set and management aspects sound like something I could benefit from. ÞG On Monday, April 10, 2017 at 5:13:57 PM UTC, Adam (Cloud Platform Support) wrote: > > The 'com.goog