White spaces are required between publicId and systemId

前端 未结 5 1975
心在旅途
心在旅途 2020-12-01 10:12

I am trying to make a ajax call to other domain locally from my computer by writing some proxy code in jsp. And this is my jQuery AJAX code that is calling proxy.jsp page. <

5条回答
  •  甜味超标
    2020-12-01 10:50

    Change the order of statments. For me, changing the block of code

    xsi:schemaLocation="http://www.springframework.org/schema/beans 
                        http://www.springframework.org/schema/context
                        http://www.springframework.org/schema/beans/spring-beans.xsd" 
    

    with

    xsi:schemaLocation="http://www.springframework.org/schema/beans 
                        http://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/context"
    

    is valid.

提交回复
热议问题