0

I was trying to do some stuffs with the tQueryCar : http://learningthreejs.com/blog/2012/05/21/sport-car-in-webgl/

I created a new app engine project and do the required stuffs and this webGL car was running fine on localhost. But when I uploaded it to app engine I'm getting some error in the firebug console. Everything is rendered except the car. This is the app engine url : http://tquerycar.appspot.com

I couldn't figure what actually is happening. Everything is working fine on localhost.

Edit : Ok. I have figured what's wrong is happening. My tQueryCar HTML code is making GET request to this address : http://tquerycar.appspot.com/plugins/car//examples/obj/veyron/parts/veyron_body_bin.js. But in my web.xml I've mapped the url / to my CarServlet class which in turn always output my index.html file. So I just want to ask now how to map URL in Java Servlet as stuffs work in a normal apache server. That's why site works fine on apache server running on localhost.

P.S. I personally don't know much about java servlet.

4

2 回答 2

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 有一个可能不应该存在的尾部正斜杠。

于 2013-08-16T00:26:17.980 回答
0

所以主要问题是所有的 url 都映射到CarServlet输出我的 index.html 作为响应的类。所以我创建了一个CommonServlet类来映射所有其他 URL:

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();
 }
}

并映射/carCarServlet/CommonServlet

于 2013-08-17T06:11:28.870 回答