我是JAVA和AppEngine的新手。我已经安装了JDK-1.6,但仍然会发生异常。项目文件部署在服务器上没有任何错误,但是当打开链接时,它会出错。在我的应用程序日志中,它只显示一个异常,即“unsupportefclassversionerror”。我已经安装了JDK-1.6,但它无法正常工作。我还安装了JDK-1.5,但在部署阶段它给出了“All Permutation not compiled”错误。我的项目XML文件位于
之下 XML文件
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee">
<!-- Servlets -->
<servlet>
<servlet-name>greetServlet</servlet-name>
<servlet-class>com.google.mystorage.server.GreetingServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>greetServlet</servlet-name>
<url-pattern>/mystorage/greet</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
AppEngine上-web.xml中
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>cloudisapp</application>
<version>2</version>
<!--
By default, App Engine sends requests serially to a given web server.
To allow App Engine to send multiple requests in parallel specify:
<threadsafe>true</threadsafe>
-->
<!-- Configure serving/caching of GWT files -->
<static-files>
<include path="**" />
<include path="favicon.ico"/>
<!-- The following line requires App Engine 1.3.2 SDK -->
<include path="**.nocache.*" expiration="0s" />
<include path="**.cache.*" expiration="365d" />
<exclude path="**.gwt.rpc" />
</static-files>
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<sessions-enabled>true</sessions-enabled>
</appengine-web-app>
数据存储,indexes.xml
<?xml version="1.0" encoding="UTF-8"?>
<datastore-indexes autoGenerate="true">
</datastore-indexes>
请帮帮我
答案 0 :(得分:3)
您已编译Java 7,Java 6无法理解。
使用Java 6 javac重新编译。
答案 1 :(得分:1)
我在共享项目中遇到了同样的问题。尝试删除所有已编译的类(war / WEB-INF / classes目录下的所有类似于源代码的编译版本)。