Spring MVC を使用して REST Web アプリケーションを開発し、JSON オブジェクトをクライアントに送信できます。
Web アプリケーションに接続する Javascript/AJAX クライアントを構築したいのですが、(JSP を使用して) 最初の HTML ページを送信する方法がわかりません。AJAX が埋め込まれた JSP ページを提供する必要があることは理解しています。この 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>
私のアプローチは正しいですか?私は基本的な概念で間違っていますか? コード内の何かを変更して実行することはできますか? 最初のページがブラウザに読み込まれるのを見て、その方向に進みたいと思います。
前もって感謝します。