1

Spring MVC で ajax を使用すると問題が発生します。ajaxを使用してページの一部のみを更新したい(そしてコントローラーからページの一部を取得したい)。だから私は何をしていますか。

$.ajax({                                       
  url : '/getCartProducts',
  type : 'GET',
  async: true,
  data : {},
  success : function(data) {  
    //data shoud be rendered jsp with model from the controller  
  },
  error: function (jqXHR, textStatus, errorThrown) {
    alert(jqXHR + " : " + textStatus + " : " + errorThrown); 
  }
})`

この関数は、コントローラーからページを表示する必要があります。これが私のコントローラーです。

@RequestMapping(value = "/getCartProducts", method = RequestMethod.GET)
@ResponseBody String ajaxGetProdCart(HttpServletRequest request) {
    LOG.trace("We are in the controller");      
    return "cart"; //this is jsp page
}

@ResponseBody なしでこれを実行しようとしていますが、機能していません。それは私にエラーを警告します:Not found

<bean id="validator"
class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" />
<bean id="viewResolver"
      class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix" value="/pages/" />
  <property name="suffix" value=".jsp" />
  <property name="contentType" value="text/html; charset=UTF-8" />
</bean>

<bean id="messageSource"
      class="org.springframework.context.support.ResourceBundleMessageSource">
  <property name="basename" value="messages" />
  <property name="useCodeAsDefaultMessage" value="true" />
</bean>

<bean id="jacksonMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
</bean>

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">      
  <property name="messageConverters">
    <list>
      <ref bean="jacksonMessageConverter" />
    </list>
  </property>
</bean>
4

1 に答える 1

0

ページフォルダーcart.jsp内にある必要があります。@ResponseBody注釈を削除する必要があります

于 2012-05-19T09:15:30.630 に答える