jsp文件和资源类之间的连接

时间:2009-09-15 07:38:38

标签: java jsp rest jersey

我的示例是使用ImplicitViewable配置功能(请参阅WEB-INF/web.xml)和隐式可视化方法,其中JSP页面通过放置在右侧进行映射 与适当的资源包名称对应的路径。它不起作用。我该怎么办额外的?

如果将${it.name}写入jsp文件,资源类也有其私有名称变量,则没有任何反应。我无法实现连接。

这是web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <servlet>
        <servlet-name>Jersey Web Application</servlet-name>
        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.feature.Redirect</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>com.sun.jersey.config.feature.ImplicitViewables</param-name>
            <param-value>true</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>ServletAdaptor</servlet-name>
        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Jersey Web Application</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>ServletAdaptor</servlet-name>
        <url-pattern>/resources/*</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>com/sun/jersey/samples/bookstore/resources/Hotelstore/index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>

这里是com / sun / jersey / samples / hotelstore / resources /

包里面的hotelstore.java
@Path("/")
@Singleton
public class Hotelstore {
    private final Map<String, Hotelitem> items = new TreeMap<String, Hotelitem>();

    private String name;

    public Hotelstore() {
        setName("Otel sheriton");
        getItems().put("1", new Hotelitem("Sheriton", "Maslak","Big boss", new Room[]{
        new Room(1,"Cedric","dolu"),
        new Room(2,"Eigner","dolu"),
        new Room(3,"Deli","dolu"),
        new Room(4,"","bos")

        }));

    }

    @Path("Hotelitems/{itemid}/")
    public Hotelitem getItem(@PathParam("itemid") String itemid) {
        Hotelitem i = getItems().get(itemid);
        if (i == null)
            throw new NotFoundException("there is no room number"+itemid);

        return i;
    }
    public long getSystemTime() {
        return System.currentTimeMillis();
    }

    public Map<String, Hotelitem> getItems() {
        return items;
    }
     getter setter for name.
......
}

2 个答案:

答案 0 :(得分:2)

我使用相同的代码获得了404“资源未找到”。我不确定你是否有相同的HTTP状态代码。 我下载了书店示例,发现使用了HTTP Filter而不是HTTP Servlet。我做了同样的改变而且工作正常。 虽然,我的应用程序使用http servlet或过滤器没有区别。我正在考虑记录一个jira请求。 我使用带有Spring插件的Jersey 1.1.5.1

答案 1 :(得分:0)

请发布您的web.xml,否则无法理解什么是“ImplicitViewable配置”。正在使用glassfish吗?

关于你的第二个问题,$ {it.name}假设你的pageContext中有一个名为“it”的bean,它有“name”属性 - 这意味着它有一个方法

public String getName(); // guessed the string, but its the obvious choice.

如果您能提供更多信息,那将会很有帮助