所以我有这个错误,我见过很多人都有:
appengine-web.xml does not contain a <threadsafe> element.
但总是提供的解决方案是添加
<threadsafe>true</threadsafe>
到 appengine-web.xml 文件。这是我的 appengine-web.xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>dummy</application>
<version>1</version>
<threadsafe>true</threadsafe>
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
</appengine-web-app>
我仍然得到没有找到线程安全元素的错误?