Spring框架@SessionAttribute@ResponseBody等注解,要常看的Ajax回調(diào)函數(shù)【詩書畫唱】
前言:建議自己有時間等情況時,多看看這篇專欄,因?yàn)锳jax回調(diào)函數(shù)的使用方法和部分的個人通透的理解等方面的內(nèi)容,以后我可能常用。
概括:
邊看教程視頻邊做的學(xué)習(xí)筆記等的記錄(閑的時候可以復(fù)習(xí)看看)。
常用的注解。
個人理解:@controller注解的話就是把普通的java類轉(zhuǎn)化為Controller。
在實(shí)現(xiàn)session信息共享的存儲賬號和密碼等的登錄等時用的@SessionAttribute注解。
使用@SessionAttribute注解實(shí)現(xiàn)模擬的簡易登錄功能。
在把User類u的內(nèi)容“賦值”到@ModelAttribute后,@ModelAttribute把內(nèi)容賦值存儲到@sessionAttribute注解中,之后想使用其內(nèi)容時就從中調(diào)用就可以,十分方便
Spring MVC框架中使用@SessionAttribute注解后,調(diào)用出其想拿出來的數(shù)據(jù)內(nèi)容的方法
:因?yàn)锧SessionAttribute注解存儲是會放在Model中,所有調(diào)用其數(shù)據(jù)時要傳Model
jsp中獲取@SessionAttribute注解存儲的內(nèi)容還是要使用session.getAttribute方法
Spring MVC框架中使用HttpSession調(diào)用session存的數(shù)據(jù)是不可以的,可能在servlet中可以使用
這個方法寫完后其@SessionAttribute注解才把數(shù)據(jù)放在session中
@SessionAttribute中放2個被賦予值的變量的方法
@ResponseBody注解的使用
@ResponseBody注解可以讓內(nèi)容被打印到網(wǎng)頁界面上,進(jìn)而可以被使用了Ajax技術(shù)的回調(diào)函數(shù)獲取
面試操作題或問答題,項(xiàng)目實(shí)際操作等中常用的Ajax回調(diào)函數(shù)的將從網(wǎng)頁獲取的data字符串轉(zhuǎn)換成js對象的2種方法:用eval方法或用JSON.parse方法
data字符串轉(zhuǎn)換成js對象的第3種方法:在Ajax回調(diào)函數(shù)中使用dataType:”JSON“的話就是會自動把從網(wǎng)頁上獲取的data部分轉(zhuǎn)換成js對象
如果{}為字符串開始結(jié)尾的,在這里是JSON字符串,如果是[]結(jié)尾的,這里就是數(shù)組,那么Ajax回調(diào)函數(shù)中要把已經(jīng)使用dataType:”JSON“轉(zhuǎn)化JSON字符串為js對象的部分從數(shù)值中通過for循環(huán)和下標(biāo)遍歷出來(個人的另一種理解:dataType:”JSON“使得出現(xiàn)JSON字符串后自動轉(zhuǎn)為js對象,所以可以理解為數(shù)組中取出JSON字符串,之后JSON字符串才自動轉(zhuǎn)化成js對象,我認(rèn)為我個人的2種執(zhí)行順序的理解可能都對,但我更偏向認(rèn)為這種理解更對。)
有時候eclipse會”腦抽筋“,多重啟下等等就可以
當(dāng)Ajax回調(diào)函數(shù)在網(wǎng)頁中獲取的內(nèi)容是數(shù)組時,獲取數(shù)組中所有數(shù)據(jù)的方法和獲取其中的對象的某個數(shù)據(jù)的方法
@RequestBody注解的使用
使用@RequestBody注解前,可能比@ResponseBody注解的使用復(fù)雜點(diǎn)(但我認(rèn)為其實(shí)都不是很復(fù)雜),必須要先導(dǎo)入我在圖中框起來的3個包,可能官網(wǎng)上可以下載
讓我們可以查看JSON字符串版本的對象的stringify方法
用map.put添加總數(shù)等的方法
5、SPRING框架_注解.ppt START
實(shí)例
實(shí)例部分可以對照邊看教程視頻邊做的學(xué)習(xí)筆記等的記錄來看

獲取賬號和密碼
判斷:
如果查到這條記錄,登錄成功,將輸入的賬號和密碼放到session中,跳轉(zhuǎn)頁面
如果沒有查到,就要提示登錄失敗
session.setAttribute("_user",user);


邊看教程視頻邊做的學(xué)習(xí)筆記等的記錄(閑的時候可以復(fù)習(xí)看看)?START
常用的注解 START

個人理解:@controller注解的話就是把普通的java類轉(zhuǎn)化為Controller。






在實(shí)現(xiàn)session信息共享的存儲賬號和密碼等的登錄等時用的@SessionAttribute注解

常用的注解 END
使用@SessionAttribute注解實(shí)現(xiàn)模擬的簡易登錄功能 START
在把User類u的內(nèi)容“賦值”到@ModelAttribute后,@ModelAttribute把內(nèi)容賦值存儲到@sessionAttribute注解中,之后想使用其內(nèi)容時就從中調(diào)用就可以,十分方便


Spring MVC框架中使用@SessionAttribute注解后,調(diào)用出其想拿出來的數(shù)據(jù)內(nèi)容的方法
:因?yàn)锧SessionAttribute注解存儲是會放在Model中,所有調(diào)用其數(shù)據(jù)時要傳Model

Spring MVC框架中使用@SessionAttribute注解后,調(diào)用出其想拿出來的數(shù)據(jù)內(nèi)容的方法
:因?yàn)锧SessionAttribute注解存儲是會放在Model中,所有調(diào)用其數(shù)據(jù)時要傳Model




使用@SessionAttribute注解實(shí)現(xiàn)模擬的簡易登錄功能 END
@ResponseBody注解的使用 START


面試操作題或問答題,項(xiàng)目實(shí)際操作等中常用的Ajax回調(diào)函數(shù)的將從網(wǎng)頁獲取的data字符串轉(zhuǎn)換成js對象的2種方法:用eval方法或用JSON.parse方法

data字符串轉(zhuǎn)換成js對象的第3種方法:在Ajax回調(diào)函數(shù)中使用dataType:”JSON“的話就是會自動把從網(wǎng)頁上獲取的data部分轉(zhuǎn)換成js對象


如果{}為字符串開始結(jié)尾的,在這里是JSON字符串,如果是[]結(jié)尾的,這里就是數(shù)組,那么Ajax回調(diào)函數(shù)中要把已經(jīng)使用dataType:”JSON“轉(zhuǎn)化JSON字符串為js對象的部分從數(shù)值中通過for循環(huán)和下標(biāo)遍歷出來(個人的另一種理解:dataType:”JSON“使得出現(xiàn)JSON字符串后自動轉(zhuǎn)為js對象,所以可以理解為數(shù)組中取出JSON字符串,之后JSON字符串才自動轉(zhuǎn)化成js對象,我認(rèn)為我個人的2種執(zhí)行順序的理解可能都對,但我更偏向認(rèn)為這種理解更對。)

如果{}為字符串開始結(jié)尾的,在這里是JSON字符串,如果是[]結(jié)尾的,這里就是數(shù)組,那么Ajax回調(diào)函數(shù)中要把已經(jīng)使用dataType:”JSON“轉(zhuǎn)化JSON字符串為js對象的部分從數(shù)值中通過for循環(huán)和下標(biāo)遍歷出來(個人的另一種理解:dataType:”JSON“使得出現(xiàn)JSON字符串后自動轉(zhuǎn)為js對象,所以可以理解為數(shù)組中取出JSON字符串,之后JSON字符串才自動轉(zhuǎn)化成js對象,我認(rèn)為我個人的2種執(zhí)行順序的理解可能都對,但我更偏向認(rèn)為這種理解更對。)


@ResponseBody注解的使用 END
@RequestBody注解的使用 START














@RequestBody注解的使用?END
邊看教程視頻邊做的學(xué)習(xí)筆記等的記錄(閑的時候可以復(fù)習(xí)看看)?END
5、SPRING框架_注解.ppt START

























5、SPRING框架_注解.ppt END
實(shí)例 START
實(shí)例部分可以對照邊看教程視頻邊做的學(xué)習(xí)筆記等的記錄來看

package com.SSHC.bean;
public class User {
? ? private String act;
? ? private String pwd;
? ? private String Sex;
public String getAct() {
return act;
}
public void setAct(String act) {
this.act = act;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public String getSex() {
return Sex;
}
public void setSex(String Sex) {
this.Sex = Sex;
}
}

package com.SSHC.controller;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.SessionAttributes;
import com.SSHC.bean.User;
@Controller
//首先從request作用域中取出名為_user的對象
//然后再執(zhí)行session.setAttribute("_user",u);
@SessionAttributes("_user")
public class PubController {
//request.setAttribute("_user",u);
@ModelAttribute("_user")
public User init(@RequestParam String act,
@RequestParam String pwd){
User u = new User();
u.setAct(act);
u.setPwd(pwd);
return u;
}
@RequestMapping("dl")
? ? public String doLg(Model m){
User u = (User) m.asMap().get("_user");
? ? return "manage";
? ? }
}

package com.SSHC.controller;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import com.SSHC.bean.User;
@Controller
public class ReqController {
@RequestMapping(value="reqCon",
method=RequestMethod.POST,consumes="application/json")
? ? public @ResponseBody Map<String,Object> login(@RequestBody User u){
System.out.println(u.getAct());
System.out.println(u.getPwd());
System.out.println(u.getSex());
List<User>list = new ArrayList<User>();
User u1 = new User();
u1.setAct("Tom");
u1.setPwd("123");
list.add(u1);
User u2 = new User();
u2.setAct("KENF");
u2.setPwd("456");
list.add(u2);
Map<String,Object>map = new HashMap<String,Object>();
map.put("rows", list);
map.put("total", list.size());
return map;? ?
? ? }
}

package com.SSHC.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class RespController {
//http://localhost:8080/Spring7/resp
@RequestMapping("resp")
@ResponseBody
? ? public String loadData(){
//response.getWrite().Writer("Hello world");
? ? //return "{\"act\":\"admin\",\"pwd\":123}";
return "[\"one\",{\"name\":\"Tom\"},true,149]";
? ? }
}


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? ? ? <script type="text/javascript" srcc="js/jquery-1.11.0.js"></script>
? ? ? ? <script type="text/javascript">
? ? ? ? ? ? $(function(){
? ? ? ? ? ? $('#btn').click(function(){
? ? ? ? ? ? $.ajax({
? ? ? ? ? ? url: 'resp',
? ? ? ? ? ? type: 'POST',
? ? ? ? ? ? dataType: 'JSON',
? ? ? ? ? ? success: function(data){
? ? ? ? ? ? //將data字符串轉(zhuǎn)換成js對象
? ? ? ? ? ? //方法一:
? ? ? ? ? ? //var o = eval('(' + data + ')');
? ? ? ? ? ? //方法二:
? ? ? ? ? ? //var o = JSON.parse(data);
? ? ? ? ? ? //alert(o.act);
? ? ? ? ? ? //alert(o.pwd);
? ? ? ? ? ? //alert(data.act);
? ? ? ? ? ? //for(var i = 0;i < data.length;i ++){
? ? ? ? ? ? // alert(data[i]);
? ? ? ? ? ? //}
? ? ? ? ? ? alert(data[1].name);
? ? ? ? ? ? }
? ? ? ? ? ? });
? ? ? ? ? ? });
? ? ? ? ? ?
? ? ? ? ? ? $('#ts').click(function(){
? ? ? ? ? ? var user = {};
? ? ? ? ? ? user.act = 'Kite';
? ? ? ? ? ? user.pwd = '456';
? ? ? ? ? ? user.Sex = '男';
? ? ? ? ? ? $.ajax({
? ? ? ? ? ? url: 'reqCon',
? ? ? ? ? ? type: 'POST',
? ? ? ? ? ? contentType: 'application/json; charset=utf-8',
? ? ? ? ? ? data: JSON.stringify(user),
? ? ? ? ? ? success: function(data){
? ? ? ? ? ? alert(data.total);
? ? ? ? ? ? var rows = data.rows;
? ? ? ? ? ? for(var i = 0;i < rows.length;i ++){
? ? ? ? ? ? var u = rows[i];
? ? ? ? ? ? alert(u.act);
? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? });
? ? ? ? ? ? });
? ? ? ? ? ? })
? ? ? ? </script>
? ? </head>
? ? <body>
? ? ? ? <input id="btn" type="button" value="獲取數(shù)據(jù)"/>
? ? ? ? <input id="ts" type="button" value="傳遞參數(shù)到后臺" />?
? ? </body>
</html>

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? ? ? <style type="text/css">
? ? ? ? ? ? *{
? ? ? ? ? ? ? ? font-size: 50px;
? ? ? ? ? ? }
? ? ? ? </style>
? ? </head>
? ? <body>
? ? ? ? <form action="dl" method="post">
? ? ? ? ? ? <input type="text" name="act" placeholder="請輸入賬號"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="password" name="pwd" placeholder="請輸入賬號"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="submit" value="登錄" />
? ? ? ? </form>
? ? </body>
</html>

<%@page import="com.SSHC.bean.User"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
? ? User u = (User)session.getAttribute("_user");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <h1>登錄成功<%=u.getAct() %></h1>? ? ? ?
? ? </body>
</html>

<?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:context="http://www.springframework.org/schema/context"
? ? xmlns:mvc="http://www.springframework.org/schema/mvc"
? ? xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
? ? ? ? http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
? ? ? ? http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">? ? ? ? ? ? ? ? ? ? ? ?
? ? <!-- 掃描指定的包和它的子包中的所有java類 -->
? ? <!-- 只要是創(chuàng)建在com.SSHC.controller包下面的java類,只要給它添加了@Controller注解
? ? ? ? ? ? ? ? ? 那么這個java類就變成了springmvc中的一個controller -->
? ? <context:component-scan base-package="com.SSHC.controller"/>
? ? <!-- 默認(rèn)注冊RequestMappingHandlerMapping和RequestMappingHandlerAdapter類 -->
? ? <mvc:annotation-driven />
? ? <!-- jsp引用外部js,css等靜態(tài)資源的解決方法(和上面的標(biāo)簽必須同時出現(xiàn),否則無法訪問url) -->
? ? <mvc:default-servlet-handler />
? ? <!-- 配置視圖名稱解析器 -->
? ? <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"?
? ? ? ? ? ? id="internalResourceViewResolver">
? ? ? ? <!-- 前綴 -->
? ? ? ? <!-- 將所有的jsp文件存放在/WEB-INF/my/目錄下 -->
? ? ? ? <property name="prefix" value="/WEB-INF/" />
? ? ? ? <!-- 后綴 -->
? ? ? ? <property name="suffix" value=".jsp" />
? ? ? ? <!-- 優(yōu)先級設(shè)定 -->
? ? ? ? <property name="order" value="10"></property>
? ? </bean>
? ? <!-- http://localhost:8080/Spring7/aaa -->
? ? <mvc:view-controller path="/aaa" view-name="lg"/>
? ? <mvc:view-controller path="/bbb" view-name="demo"/>
</beans>

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
? <display-name>J190802</display-name>
? <!-- controller中文亂碼處理,注意一點(diǎn):要配置在所有過濾器的前面 -->
? <filter>
? ? <filter-name>CharacterEncodingFilter</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>
? </filter>
? <filter-mapping>
? ? <filter-name>CharacterEncodingFilter</filter-name>
? ? <url-pattern>/*</url-pattern>
? </filter-mapping>
? <!-- springmvc框架配置 -->
? <!-- DispatcherServlet是前置控制器,配置在web.xml文件中的。
? ? ? ? ? ? 攔截匹配的請求,Servlet攔截匹配規(guī)則要自已定義,把攔截下來的請求,
? ? ? ? ? ? 依據(jù)相應(yīng)的規(guī)則分發(fā)到目標(biāo)Controller來處理,
? ? ? ? ? ? 是配置spring MVC的第一步。 -->
? <servlet>
? ? ? <servlet-name>springmvc</servlet-name>
? ? ? <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
? ? ? <init-param>
? ? ? ? ? <!-- 覆蓋默認(rèn)配置文件{servlet-name}-servlet.xml -->
? ? ? ? ? <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>springmvc</servlet-name>
? ? ? <url-pattern>/</url-pattern>
? </servlet-mapping>
? <welcome-file-list>
? ? <welcome-file>index.html</welcome-file>
? ? <welcome-file>index.htm</welcome-file>
? ? <welcome-file>index.jsp</welcome-file>
? ? <welcome-file>default.html</welcome-file>
? ? <welcome-file>default.htm</welcome-file>
? ? <welcome-file>default.jsp</welcome-file>
? </welcome-file-list>
</web-app>

訪問路徑和對應(yīng)配置文件代碼等個人寫的說明.text
http://localhost:8080/Spring7/aaa? ? :? ? <mvc:view-controller path="/aaa" view-name="lg"/>
http://localhost:8080/Spring7/bbb? ? :<mvc:view-controller path="/bbb" view-name="demo"/>
【在這里,lg就是lg.jsp,demo就是demo.jsp】
http://localhost:8080/Spring7/resp :
@Controller
public class RespController {
@RequestMapping("resp")
@ResponseBody
? ? public String loadData(){
//response.getWrite().Writer("Hello world");
? ? //return "{\"act\":\"admin\",\"pwd\":123}";
return "[\"one\",{\"name\":\"Tom\"},true,149]";
? ? }














