我已经使用 Spring MVC 开发了一个 REST Web 应用程序,并且可以将 JSON 对象发送到客户端。
我想构建一个连接到我的 Web 应用程序的 Javascript/AJAX 客户端,但我不知道如何发送第一个 HTML 页面(使用 JSP)。我知道我应该为 JSP 页面提供一些嵌入式 AJAX。此 AJAX 将向我的 Web 服务发送请求。
更新:
我无法实现的要求是http://localhost:8084
在浏览器中编写默认 URI ( ) 并查看我在 JSP 页面 ( home.jsp
) 中编写的 HTML 页面。
我的方法如下:
我有一个发送根 JSP 页面的控制器
@Controller
public class SessionController {
@RequestMapping(value="/", method=RequestMethod.GET)
public String homeScreen(){
return "home";
}
}
但是当我运行服务器时,我收到了这个警告
WARNING: No mapping found for HTTP request with URI [/home] in DispatcherServlet with name 'dispatcher'
并且浏览器中没有加载任何内容。
这是我的应用程序上下文文件:
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:component-scan base-package="com.powerelectronics.freesun.web" />
<mvc:annotation-driven />
</beans>
和web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>
我的方法正确吗?我在任何基本概念上都错了吗?我可以修改代码中的某些内容以使其运行吗?我希望看到在浏览器中加载的第一页并继续朝那个方向前进。
提前致谢。