2018年2月26日 星期一

幾個spring mvc response與 request的方法

springmvc的設置可去看 關於Spring MVC的一些設定與簡單的example

首先在controller 建立初始頁面

第一個方法 是return jsp 命名的string , response用Model 夾帶參數



@RequestMapping(value="/testing",method=RequestMethod.GET, produces="application/json; charset=utf-8")
public String testing(Model model){

String message = "yo man";

model.addAttribute("message",message);
return "testing";

}

JSP的部份

<form method="POST" action="../SpringMVC/modelTest"  modelAttribute="Accountings">
<center>
<h2>Hello World</h2>
<h2>
${message}
</h2>
/center>
</form>

畫面上就可以看到呈現的字串了



第二個方法使用Ajax傳接值

Controller

@RequestMapping(value="/testingMVC", method = {RequestMethod.GET, RequestMethod.POST})
@ResponseBody
public Map<String,String> showMessage() {
Map<String,String> params = new HashMap<String, String>();
params.put("msg", "hello");
  return params;
}  



JSP

$( document ).ready(function() {
$.ajax({
type:'GET', 
         url: 'testingMVC',
         dataType : 'json',
         success:function(data){
          console.log(data.msg);         
         },
         error:function(e){
          console.log(e);
          
         },                     
});
});


畫面上按F12查看console 即可發現 params.put("msg", "hello");的字串






第三種方法  JSON String
JSP
form裡面加個按鈕
<button type="button" id="testBt" onclick="getVal()">get json string</button>


寫一個ajax函數
function getVal(){
var dataValue = {"msg":"bruno mars"};
$.ajax({
 type:'POST', 
         url: 'getMsg',
         data:JSON.stringify(dataValue),
         contentType : 'application/json; charset=utf-8; text/plain',
         dataType : 'json',
         success:function(data){
          console.log(data);         
         },
         error:function(e){
          console.log(e);           
         },                      
});
}

Controller

@RequestMapping(value="/getMsg",method = {RequestMethod.POST} , produces="application/json; charset=utf-8")
@ResponseBody
public String callVal(@RequestBody Map<String,String> msg) {
System.out.println("params " + msg.values());

JSONObject json = new JSONObject();

json.put("msg", "that's what I like");
  return json.toString();
}

加上@RequestBody annotation 可以取到request的參數



在前端ajax Success裡可取到response data


第四種使用ModelAndView 加上Form表單的modelAttribute 

接下來做submit並導頁的case


JSP
<form method="POST" action="../SpringMVC/modelTest"  modelAttribute="Accountings">

<table>
<tr>
<td>
<button type="button" id="testBt" onclick="getVal()">get json string</button>
</td>
</tr>
<tr>
<td>
<input type="text" id="remarks" name="remarks" value="this is a modelattribue test">
</td>
</tr>
<tr>
<td>
<button type="submit" id='sub'>clickme</button>
</td>
</tr>

</table>
</center>
</form>

再傳一個要導向的jsp頁面
簡單打上要顯示的值
<form method="POST" action="../SpringMVC/modelTest"  modelAttribute="Accountings">
<center>
<h2>
${message.param}
</h2>
</center>
</form>



Model
創一個帳務的model


這邊簡單用remark備註做一個範例


Controller


@RequestMapping(value="/modelTest",method={RequestMethod.POST}, produces="application/json; charset=utf-8")
public ModelAndView testing(@ModelAttribute("Accountings") Accountings accountings,Model model){

String message = accountings.remarks + " 取得帳務備註了!";

model.addAttribute("param",message);

return new ModelAndView("testing2","message",model);
}


點下clickme後 在server可以看到form裡面傳來的值

到View後


就可以得到值了!



2018年2月24日 星期六

關於Spring MVC的一些設定與簡單的example

我是用maven project 因此先設定pom.xml

<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.0.0.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>5.0.0.RELEASE</version>
</dependency>
    
<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.0.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.0.0.RELEASE</version>
</dependency>

core, context, web以及webmvc



再來先確認springmvc與web.xml 還有jsp的目錄結構

接著先看一下web.xml的內容 加上
       <servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>         
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>
            /WEB-INF/springmvc-servlet.xml
            </param-value>       
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

注意url-pattern 為  /

此外若有編碼問題則請參照另一篇: 解決Spring mvc裡JSP亂碼問題


springmvc-servlet.xml 裡的內容

    <mvc:default-servlet-handler/>
  <context:component-scan base-package="controller" />

    <mvc:annotation-driven />
     <!-- 解析頁面的規則  -->  
    <bean id="jspviewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 告訴Spring MVC網頁的資料夾 -->
        <property name="prefix" value="/WEB-INF/jsp/"/>   
        <property name="suffix" value=".jsp"/> 
    </bean>   
因為我大部分使用annotation
因此加上 <mvc:annotation-driven /> 以及欲掃描的package
<context:component-scan base-package="controller" />

到Controller裡加上requestmapping以及@Controller的 annotation


下方加上這段,用return String的方法來顯示前端
@RequestMapping(value="/testing",method=RequestMethod.GET)
public String displaying(@RequestParam Map<String,String> params) {

  return "testing";

}

return 的string 為 jsp的命名





這樣就完成了基本 spring mvc的設置了

2018年2月22日 星期四

解決Spring mvc裡JSP亂碼問題

今天撰寫網頁時遇到了JSP亂碼問題,在conroller回傳到view之前是沒有編碼的問題的,但到了view後顯示的卻是問號亂碼如下圖


首先當然先確認前端是否有設定UTF-8

我後端原本就有寫了filter,但還是無法,在網路上找了spring的做法,在web.xml加上以下

  <filter>
    <filter-name>SetCharacterEncoding</filter-name>
        <filter-class>
           org.springframework.web.filter.CharacterEncodingFilter
        </filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
    <init-param>  
       <param-name>forceEncoding</param-name>  
       <param-value>true</param-value>  
    </init-param>      
  </filter>
<filter-mapping>
    <filter-name>SetCharacterEncoding</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

但問題仍然沒解決,因為在此設置只會解決request的encoding 即使使用ForceEncoding也無法解決這個case

再google了一下,發現原因



Later found that because the return json in the controller used @ResponseBody, and spring source @ ResponseBody the realization of the class found its default encoding is iso-8859-1, and the project with the encoding for the utf-8, so the Chinese will appear Garbled.


主要是說spring annotation預設編碼為 iso-8859-1 雖然專案設定utf-8 仍然會造成混淆

於是大部分推薦的最終解決方法是加上
@RequestMapping(value="/initValues",method = {RequestMethod.POST} , produces="text/plain")



這樣就沒問題啦~~