When I run my GWT app using Eclipse Plugin, I can access local ds viewer at http://localhost:8888/_ah/admin but after converting to mvn project, I get a
HTTP ERROR: 404 NOT_FOUND
RequestURI=/_ah/admin
Powered by Jetty://
I can access my app on same port, so it's indeed 8888.
Please give suggestions, thanks
Update: pom.xml
`
<plugin>
<groupId>net.kindleit</groupId>
<artifactId>maven-gae-plugin</artifactId>
<version>0.8.4</version>
<configuration>
<port>81</port>
<disableUpdateCheck>true</disableUpdateCheck>
<encoding>UTF-8</encoding>
<keepTempUploadDir>true</keepTempUploadDir>
<unpackVersion>${gaeVersion}</unpackVersion>
<sdkDir>${settings.localRepository}/com/google/appengine/appengine-java-sdk/1.5.2/appengine-java-sdk-1.5.2</sdkDir>
</configuration>
</plugin>
`
localhost:8888
but the admin console doesn't? That's crazy. I'm pretty sure themaven-gae-plugin
hosts on8080
by default. – Travis Webb