1、工程目錄
配置在 基礎之上修改配置:
1)pomx.xml 新增返回對了物件轉json 依賴
org.codehaus.jackson
jackson-core-asl
1.9.13
org.codehaus.jackson
1.9.13
2)spring-servlet.xml 修改為:
3、controller的方法返回型別修改:
並且新增 @responsebody 註解
4、 請求 http://localhost:8080/springmvc/test 返回的是物件test 的json物件
Spring Mvc 返回機制
spring mvc 有如下的幾種返回方式 modelandview,model,modelmap,map,view,string,void 例子在類開始之前加上了如下註解 controller 一 modelandview public modelandview show 請求路徑 專案路徑 ad...
springmvc返回引數
1 通過原生的api進行引數返回。2 map 方法上設定map引數。然後為這個map新增資料。這個map中的資料會放在request域中。3 model 同樣的,還是在方法上設定model的引數。然後呼叫model的方法addattribute方法,即可把引數放在request域中。使用方法與map...
SpringMVC 二 專案搭建
2 新增pom引用 此處因為要引用多個spring包,建議把版本號提出來放到properties 會匯入如下springmvc相關的包 3 新增配置檔案 要使用springmvc,還需要新增一些配置 在web.xml中配置如下 這裡應該是引入dispatcherservlet 在web inf we...