admin管理员组文章数量:1345447
I downloaded xampp and java. I compiled a java program, added it to the directory(C:\xampp\tomcat\webapps\ROOT\WEB-INF/StinkyApp.class), and opened localhost:8080 in my browser.
But I got an error message saying HTTP Status 404 – Not Found Type Status Report
Message The requested resource /webapps/StinkyApp.class is not available
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/8.5.96 Can someone help me with this?
I downloaded xampp and java. I compiled a java program, added it to the directory(C:\xampp\tomcat\webapps\ROOT\WEB-INF/StinkyApp.class), and opened localhost:8080 in my browser.
But I got an error message saying HTTP Status 404 – Not Found Type Status Report
Message The requested resource /webapps/StinkyApp.class is not available
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/8.5.96 Can someone help me with this?
Share Improve this question asked 16 hours ago user30097622user30097622 1 New contributor user30097622 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.1 Answer
Reset to default 3Tomcat expects Java class files (like servlets and other classes) under the WEB-INF\classes directory.
If its a servelet class, you should move your compiled .class file into the following directory and map it with servlet tags in web.xml
C:\xampp\tomcat\webapps\ROOT\WEB-INF\classes\StinkyApp.class
After placing your class there, restart your Tomcat server and try accessing it.
Instead of using ROOT app, you can create your own application under webapps like below and try.
webapps/
└── StinkyApp/
├── WEB-INF/
│ ├── classes/
│ │ └── StinkyApp.class
│ └── web.xml
update your web.xml and add the below if the class is a servlet and restart the tomcat server.
<web-app xmlns="http://xmlns.jcp./xml/ns/javaee"
xmlns:xsi="http://www.w3./2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp./xml/ns/javaee
http://xmlns.jcp./xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<servlet>
<servlet-name>StinkyServlet</servlet-name>
<servlet-class>StinkyApp</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>StinkyServlet</servlet-name>
<url-pattern>/stinky</url-pattern>
</servlet-mapping>
</web-app>
and access the application with : http://localhost:8080/StinkyApp/stinky
of if you want to try the tomcat is working or not you can create a simple html under StinkyApp and access it with : http://localhost:8080/StinkyApp
webapps/
└── StinkyApp/
├── index.html
├── WEB-INF/
│ ├── classes/
│ │ └── StinkyApp.class
│ └── web.xml
index.html
<!DOCTYPE html>
<html>
<head>
<title>Hello JSP</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
本文标签: How do I host a java file using Apache Tomcat in xamppStack Overflow
版权声明:本文标题:How do I host a java file using Apache Tomcat in xampp? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758009a2533862.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论