使用Restlet和SpringServerServlet接收404错误

时间:2013-10-13 03:55:49

标签: spring restlet

我刚开始使用Restlet而我正在使用2.0-M3版本。我正在尝试在Web应用程序中使用Spring。当我尝试访问我的应用程序中的url / hello时,我收到404错误。以下是我的代码部分:

的web.xml

<servlet>
    <servlet-name>rest</servlet-name>
        <servlet-class>
            org.restlet.ext.spring.SpringServerServlet
        </servlet-class>
        <init-param>
        <param-name>org.restlet.component</param-name>
            <param-value>helloComponent</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

<servlet-mapping>
    <servlet-name>rest</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

ServerResource:

public class MyResource extends ServerResource {
@Get
public String getResource()  {
    return "Hello World!";
}
}

的applicationContext.xml

<bean id="helloComponent" class="org.restlet.ext.spring.SpringComponent">
    <property name="defaultTarget" ref="helloAppliction" />
</bean>

<bean id="helloAppliction" class="MyApplication">
    <property name="root" ref="router" />
</bean>

<!--  Define the router -->
<bean name="router" class="org.restlet.ext.spring.SpringBeanRouter"/>

<!-- Define all the routes -->
<bean name="/hello" id="helloResource" class="MyServerResource" scope="prototype" autowire="byName" />

以下是日志中的错误消息:

Oct 12, 2013 11:34:59 PM org.restlet.engine.log.LogFilter afterHandle
INFO: 2013-10-12        23:34:59        127.0.0.1       -       127.0.0.1       8080    GET     /mywebapp/hello  -       404     330     -       1       http:
//localhost:8080        Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0    -

如果你看错了,有人可以告诉我吗?

谢谢! 埃里克

1 个答案:

答案 0 :(得分:0)

我想你也在Restlet的讨论板上发帖了?我会像在那里那样回答。

您没有将“/ hello”路径附加到路由器。您的路由器没有路由,因此总是会给出404。