eclipseでアプリケーションの作成をしています
現在はサーバー起動後に以下のURLでアクセスしているのですが、以下のようにURLを変更してもアクセスできるようにしたいです。
今:http://localhost:8080/address/system/start
これに変えたい:http://localhost:8080/sales/system/start
その場合どこをどのように変更すればいいのかが分かりませんので、教えていただきたいです。
一応これかなと思ったソースを貼っておきますので確認をお願いします。
他に何か必要なソースなどあれば教えていただきたいです。
よろしくお願いします
SalesSystemController.jsp
java
1package jp.practice.sales; 2 3import org.springframework.stereotype.Controller; 4import org.springframework.ui.Model; 5import org.springframework.web.bind.annotation.RequestMapping; 6 7/** 8 * Handles requests for the application home page. 9 */ 10@Controller 11@RequestMapping(value = "/system") 12public class SalesSystemController { 13 14 private static final String INIT = "init"; 15 private static final String INIMSG = "従業員番号を入力してください"; 16 @RequestMapping(value = "/start") 17 public String init(Model model) { 18 model.addAttribute("message", INIMSG); 19 return INIT; 20 } 21}
init.jsp
jsp
1<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 2<%@ page session="false" %> 3<!DOCTYPE html> 4<html> 5<head> 6<link rel="stylesheet" type="text/css" 7href="/address/resources/css/common.css" /> 8<title>住所録(初期画面)</title> </head> 9<body> 10<h1> 11 Hello world! 12</h1> 13 14<P> The time on the server is ${serverTime}. </P> 15</body> 16</html>
xml
1<?xml version="1.0" encoding="UTF-8"?> 2<beans:beans xmlns="http://www.springframework.org/schema/mvc" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:beans="http://www.springframework.org/schema/beans" 5 xmlns:context="http://www.springframework.org/schema/context" 6 xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd 7 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 8 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> 9 10 <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure --> 11 12 <!-- Enables the Spring MVC @Controller programming model --> 13 <annotation-driven /> 14 15 <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory --> 16 <resources mapping="/resources/**" location="/resources/" /> 17 18 <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory --> 19 <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 20 <beans:property name="prefix" value="/WEB-INF/views/" /> 21 <beans:property name="suffix" value=".jsp" /> 22 </beans:bean> 23 24 <context:component-scan base-package="jp.practice.sales" /> 25 26 27 28</beans:beans>
xml
1<?xml version="1.0" encoding="UTF-8"?> 2<beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> 5 6 <!-- Root Context: defines shared resources visible to all other web components --> 7 8</beans>
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。