一般情況下,contrller方法返回的字串的值會被當成邏輯檢視名處理。
但是如果返回的字串中帶forward:或redirect:字首時,springmvc會對他們進行特殊處理,將forward:和redirect:當成指示符,其後字串作為url來處理
例如:forward:/index.jsp 將會完成乙個到index.jsp頁面的**操作
redirect:/index.jsp將會完成乙個到index.jsp頁面的重定向操作
在controller中:
package com.cgf.springmvc.handlers;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
@requestmapping(value="/springmvc")
@controller
public class myredirect
}
Java框架(十四)之springMVC的註解開發
1.配置springmvc配置檔案 對映器和介面卡的註解版 mvc annotation driven 2.配置web.xml檔案 springmvc org.springframework.web.servlet.dispatcherservlet contextconfiglocation cl...
springmvc和mybatis整合關鍵配置
springmvc mybaits的系統架構 第一步 整合dao層 第二步 整合service層 通過spring管理 service介面。使用配置方式將service介面配置在spring配置檔案中。實現事務控制。第三步 整合springmvc 由於springmvc是spring的模組,不需要整...
springmvc和mybatis整合關鍵配置
springmvc mybaits的系統架構 第一步 整合dao層 第二步 整合service層 通過spring管理 service介面。使用配置方式將service介面配置在spring配置檔案中。實現事務控制。第三步 整合springmvc 由於springmvc是spring的模組,不需要整...