Error with dandelion datatables - Failed to load resource: server responded with status 404 (Not Found)
I installed dandelion datatables for the first time. I followed this tutorial. I am using version 1.0.1
Can you help me troubleshoot the following errors:
Failed to load resource: the server responded with a status of 404 (Not Found)
http: // localhost: 8080 / website / dandelion / datatables / css / jquery.dataTables.css
Failed to load resource: the server responded with a status of 404 (Not Found)
http: // localhost: 8080 / website / dandelion / jquery / js / jquery.js
Failed to load resource: the server responded with a status of 404 (Not Found)
http: // localhost: 8080 / website / dandelion / datatables / js / jquery.dataTables.js
Failed to load resource: the server responded with a status of 404 (Not Found)
Failed to load resource: the server responded with a status of 404 (Not Found)
dandelion-datatables-91438756c71be2df6b2ee155197c3192.js:34
Uncaught ReferenceError: $ is not defined
Failed to load resource: the server responded with a status of 404 (Not Found)
http: // localhost: 8080 / website / dandelion / datatables / css / jquery.dataTables.css
Failed to load resource: the server responded with a status of 404 (Not Found)
http: // localhost: 8080 / enepath / dandelion / datatables / css / jquery.dataTables.css
source to share
Be sure to follow all requirements, in particular "Servlet 3.0+ container". Also make sure your file is web.xml
well configured for Servlet 3.0 API:
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
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_3_0.xsd"
version="3.0">
...
</web-app>
source to share