我在Eclipse中编写了一个连接我的文件Calculator.war。
的应用程序import java.util.Scanner;
import org.eclipse.jetty.server.*;
import org.eclipse.jetty.webapp.WebAppContext;
public class HelloWorld{
public static void main(String[] args) throws Exception {
Server server = new Server(1490);
WebAppContext webapp = new WebAppContext();
webapp.setContextPath("/");
webapp.setWar("D:/Calculator.war");
server.setHandler(webapp);
server.start();
Scanner console = new Scanner(System.in);
while(!console.nextLine().equals("stop"));
console.close();
server.stop();
}
}
如果我在浏览器链接localhost:1490中打开,我收到一条错误消息:“JSP未配置并且关于/ lib / jsp” 如果我写localhost:1490 / ServletCalculator一切都OK。
我将JAR连接到项目jetty-all-8.1.7.v20120910.jar和servlet-api-3.0.jar。 然后我试图从/ lib / jsp连接jar但它没有成功。 我不使用MAVEN 有可能解决这个问题吗?怎么样?
答案 0 :(得分:1)
在Jetty中启用JSP支持是一项复杂的工作。多 必须执行步骤。最后,我成功了,我 记录了tutorial中的整个过程 在启用JavaServer Pages 标题下。
答案 1 :(得分:0)
这是我的web.xml。但是,尽管没有关于index.jsp的信息,但它通过地址localhost加载:1490 /
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 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">
<servlet>
<servlet-name>ServletCalculator</servlet-name>
<servlet-class>main_pack.ServletCalculator</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ServletCalculator</servlet-name>
<url-pattern>/ServletCalculator</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>