我试图用tQueryCar做一些事情:http://learningthreejs.com/blog/2012/05/21/sport-car-in-webgl/
我创建了一个新的应用程序引擎项目并执行所需的东西,这个webGL汽车在localhost上正常运行。但是当我将它上传到app引擎时,我在firebug控制台中遇到了一些错误。除汽车外,一切都呈现出来。这是应用引擎网址: http://tquerycar.appspot.com
我无法确定究竟发生了什么。在localhost上一切正常。
编辑:
好。我知道发生了什么问题。我的tQueryCar HTML代码正在向此地址发出GET请求:http://tquerycar.appspot.com/plugins/car//examples/obj/veyron/parts/veyron_body_bin.js
。但是在我的web.xml中,我已将网址/
映射到我的CarServlet
类,后者又会输出我的index.html
文件。所以我现在只想问一下如何在Java Servlet中映射URL,因为东西在普通的apache服务器中工作。这就是为什么网站在localhost上运行的apache服务器上工作正常的原因。
P.S。我个人对java servlet知之甚少。
答案 0 :(得分:0)
看起来你的两个资源网址中有一个拼写错误:
http://tquerycar.appspot.com/plugins/car//examples/obj/veyron/parts/veyron_wheel_bin.js http://tquerycar.appspot.com/plugins/car//examples/obj/veyron/parts/veyron_body_bin.js
由于双正斜杠,它们未在生产中加载。具体来说,tquery.car.js中的tQuery.Car.baseUrl有一个可能不应该存在的尾随正斜杠。
答案 1 :(得分:0)
所以主要问题是所有网址都映射到CarServlet
类,它正在输出我的index.html作为响应。所以我创建了一个CommonServlet
类来映射所有其他网址:
package in.omerjerk.tquerycar;
@SuppressWarnings("serial")
public class CommonServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
ServletContext sc = getServletContext();
String path=req.getRequestURI().substring(req.getContextPath().length()+1, req.getRequestURI().length());
String filename = sc.getRealPath(path);
// Get the MIME type of the image
String mimeType = sc.getMimeType(filename);
if (mimeType == null) {
sc.log("Could not get MIME type of "+filename);
resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
return;
}
// Set content type
resp.setContentType(mimeType);
// Set content size
File file = new File(filename);
resp.setContentLength((int)file.length());
// Open the file and output streams
FileInputStream in = new FileInputStream(file);
OutputStream out = resp.getOutputStream();
// Copy the contents of the file to the output stream
byte[] buf = new byte[1024];
int count = 0;
while ((count = in.read(buf)) >= 0) {
out.write(buf, 0, count);
}
in.close();
out.close();
}
}
并将/car
映射到CarServlet
,将/
映射到CommonServlet
。