私は Spring Web アプリケーションを持っています。このアプリケーションには 2 つの側面があります。1 つは Json Web サービスで、もう 1 つは静的ビューです。Web アプリを起動し、URL を使用してビューに移動すると、正常に動作します。しかし、Json Web サービスに接続しようとすると、サーバーが 404 エラーを返します。
これが私のdispatcher-servlet.xmlファイルです
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- SPECIFIC CONFIGURATIONS -->
<import resource="springConfigurations/common-config.xml"/>
<import resource="springConfigurations/mvc-config.xml"/>
<bean id="exceptionResolver" class="org.springframework.web.servlet.view.json.exception.JsonExceptionResolver">
<property name="exceptionView">
<value>jsonView</value>
</property>
<property name="errorHandler">
<list>
<ref bean="statusError" />
<ref bean="modelFlagError" />
</list>
</property>
<property name="exceptionHandler">
<list>
<ref bean="exceptionMessageExceptionHandler" />
<ref bean="stackTraceExceptionHandler" />
</list>
</property>
</bean>
<bean name="exceptionMessageExceptionHandler" class="org.springframework.web.servlet.view.json.exception.ExceptionMessageExceptionHandler" />
<bean name="stackTraceExceptionHandler" class="org.springframework.web.servlet.view.json.exception.StackTraceExceptionHandler"/>
<bean name="statusError" class="org.springframework.web.servlet.view.json.error.HttpStatusError" />
<bean name="modelFlagError" class="org.springframework.web.servlet.view.json.error.ModelFlagError" />
</beans>
これは common-config.xml ファイルです
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
<!-- COMMON CONFIGURATIONS -->
<mvc:annotation-driven/>
<tx:annotation-driven/>
<context:component-scan base-package="com.jkcs.touchpos.application.controller" />
<bean class="org.springframework.web.servlet.view.XmlViewResolver">
<property name="location">
<value>/WEB-INF/views.xml</value>
</property>
<property name="order" value="0" />
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp">
<property name="order" value="1" />
</bean>
<!-- Annotations based Configuration -->
<context:annotation-config />
<!-- Components Auto-Detection (Backend) -->
<context:component-scan base-package="com.jkcs.touchpos" use-default-filters="false" >
<!-- Types annotated by Spring Managed, Controller and Transactional, or by an annotation that itself is
annotated by SpringManaged, Controller, Transactional -->
<context:include-filter type="annotation" expression="com.jkcs.touchpos.platform.annotations.SpringManaged"/>
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
<context:include-filter type="annotation" expression="org.springframework.transaction.annotation.Transactional"/>
</context:component-scan>
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping" />
</beans>
Views.xml ファイル
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
<bean name="jsonView" class="org.springframework.web.servlet.view.json.JsonView"/>
</beans>
サービス クラス。
@Controller
public class TouchPosService {
@RequestMapping(value = "/service", method = RequestMethod.GET)
public ModelAndView sampleJsonService(){
Map<String, String> model = new HashMap<String, String>();
model.put("Value", "Test Service to provide touchPos Data");
return new ModelAndView("jasonView", model);
}
}
ここで何が間違っているのですか!優先度を指定して 2 つのビュー リゾルバーを定義しました。しかし、いくつかの方法で機能していません!これで私を助けてください!
ありがとうございました。
アップデート :
サーバーの起動時にコンソールに次のログが記録されます。
2013-04-22 13:40:51.384:INFO::Logging to StdErrLog::DEBUG=false via org.eclipse.jetty.util.log.StdErrLog
log4j:WARN No appenders could be found for logger (com.jkcs.touchpos.server.jetty.ServerRunner).
log4j:WARN Please initialize the log4j system properly.
2013-04-22 13:40:51.384:INFO::jetty-7.0.0.v20091005
2013-04-22 13:40:51.947:INFO:/:Initializing Spring FrameworkServlet 'dispatcher'
2013-04-22 13:40:53.509:INFO::Started SelectChannelConnector@0.0.0.0:9157
そして、次の 404 がブラウザからスローされます!