SSM,bootstrap模塊,解決controller訪問(wèn)不了的問(wèn)題,查詢(xún),登錄注冊(cè)功能【詩(shī)書(shū)畫(huà)唱】
概括:
組合分頁(yè)查詢(xún)的效果
UserinfoSqlMap.xml
解決eclipse因?yàn)榇翱陂_(kāi)太多等的切換文件卡的問(wèn)題
邊看教程視頻邊做的學(xué)習(xí)記錄
代碼例子
Oracle數(shù)據(jù)庫(kù)部分
@DateTimeFormat(pattern="yyyy-MM-dd")
@JsonFormat(pattern="yyyy-MM-dd")
/*其實(shí)private userCountAllService userCountAllService;
寫(xiě)成private userCountAllService UserCountAllService;
也可以,最好是UserCountAllService的重命名
字母拼寫(xiě)一樣,防止報(bào)錯(cuò),Ssm框架做些處理時(shí)不會(huì)找不到
其內(nèi)容。
* */
如果訪問(wèn)controller訪問(wèn)不了就是掃描@Controller注解的部分錯(cuò)了
springmvc-servlet.xml中的
<context:component-scan
?base-package="com.SSHC.controller">
?的base-package的內(nèi)容寫(xiě)錯(cuò)了
一般一些類(lèi)的重命名習(xí)慣都用小寫(xiě),比如拼寫(xiě)一樣,但首字母是小寫(xiě)
applicationContext.xml是寫(xiě)“掃描”等部分的配置的


@Resource
@RequestMapping("RequestMappingLogin")
@ModelAttribute("SpringWeb")?
運(yùn)行效果





解決eclipse因?yàn)榇翱陂_(kāi)太多等的切換文件卡的問(wèn)題 START

解決eclipse因?yàn)榇翱陂_(kāi)太多等的切換文件卡的問(wèn)題 END
邊看教程視頻邊做的學(xué)習(xí)記錄 START




邊看教程視頻邊做的學(xué)習(xí)記錄 END
代碼例子 START
Oracle數(shù)據(jù)庫(kù)部分:
?--drop table Userinfo? ? ? ? ? ? ? ??
create table Userinfo(
? ? id number primary key,
? ? act varchar2(30) not null,
? ?pwd varchar2(30) not null,
? ?birth date
);
--drop sequence seq_Userinfo
create sequence seq_Userinfo
start with 1? ? ? ?--起始值是1
increment by 1? ? ?--增長(zhǎng)的值? ?
maxvalue 999999999 --序列號(hào)的最大值
minvalue 1? ? ? ? ?--序列號(hào)的最小值
nocycle? ? ? ? ? ? --是否循環(huán)
cache 10;? ? ? ? ? --預(yù)存
insert into Userinfo values(seq_Userinfo.nextval,'黑黑','pwd1',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'紅紅','pwd2',to_date('2020-06-07','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'藍(lán)藍(lán)','pwd3',to_date('2020-06-08','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'666','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'999','pwd5',to_date('2020-06-10','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'888','pwd6',to_date('2020-06-11','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩(shī)書(shū)畫(huà)唱','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'三連','pwd5',to_date('2020-06-10','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'關(guān)注','pwd6',to_date('2020-06-11','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩(shī)書(shū)畫(huà)唱1','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩(shī)書(shū)畫(huà)唱2','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
--select * from Userinfo?


package com.SSHC.bean;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
public class Userinfo {
? ? private Integer id;
? ? private String act;
? ? private String pwd;
? ? @DateTimeFormat(pattern="yyyy-MM-dd")
? ? @JsonFormat(pattern="yyyy-MM-dd")
? ? private Date birth;
? ? private Integer page;
? ? private Integer rows;
? ?
? ? private Integer start;
? ? private Integer end;
??
? ? @DateTimeFormat(pattern="yyyy-MM-dd")
? ? @JsonFormat(pattern="yyyy-MM-dd")
? ? private Date sbirth;
? ? @DateTimeFormat(pattern="yyyy-MM-dd")
? ? @JsonFormat(pattern="yyyy-MM-dd")
? ? private Date ebirth;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
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 Date getBirth() {
return birth;
}
public void setBirth(Date birth) {
this.birth = birth;
}
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public Integer getRows() {
return rows;
}
public void setRows(Integer rows) {
this.rows = rows;
}
public Integer getStart() {
return start;
}
public void setStart(Integer start) {
this.start = start;
}
public Integer getEnd() {
return end;
}
public void setEnd(Integer end) {
this.end = end;
}
public Date getSbirth() {
return sbirth;
}
public void setSbirth(Date sbirth) {
this.sbirth = sbirth;
}
public Date getEbirth() {
return ebirth;
}
public void setEbirth(Date ebirth) {
this.ebirth = ebirth;
}
}


package com.SSHC.controller;
import javax.annotation.Resource;
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.SessionAttributes;
import com.SSHC.bean.Userinfo;
import com.SSHC.service.PublicService;
@Controller
public class LoginController {
@Resource
private PublicService publicService;
@RequestMapping("RequestMappingLogin")
? ? public String doLogin(@ModelAttribute("SpringWeb") Userinfo u
? ? ,HttpSession session,Model m){
? ? u = publicService.login(u);
? ? if(u != null && u.getId() > 0) {
? ?
? ? session.setAttribute("_user", u);
? ? ? ? return "index";
? ? } else {
? ? m.addAttribute("msg","登錄失敗");
? ? return "login";
? ? }
? ? }
}


package com.SSHC.controller;
import javax.annotation.Resource;
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.SessionAttributes;
import com.SSHC.bean.Userinfo;
import com.SSHC.service.PublicService;
@Controller
public class RegisterController {
@Resource
private PublicService publicService;
@RequestMapping("RequestMappingRegister")
? ? public String doRegister(@ModelAttribute("SpringWeb") Userinfo u
? ? ,HttpSession session,Model m){
Integer count= publicService.register(u);
System.out.println("count:"+count);
? ? if(count != null ) {
? ? m.addAttribute("msg","注冊(cè)成功!");
? ? ? ? return "login";
? ? } else {
? ? m.addAttribute("msg","注冊(cè)失??!");
? ? return "register";
? ? }
? ? }
}


package com.SSHC.controller;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
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.Userinfo;
import com.SSHC.service.UserCountAllService;
@Controller
public class UserController {
@Resource
private UserCountAllService userCountAllService;
@RequestMapping(value = "ld",method = RequestMethod.GET)
? ? public @ResponseBody Map<String,Object>loadData
? ? (@ModelAttribute("SpringWeb") Userinfo u){
System.out.println("每頁(yè)顯示:" + u.getRows());
System.out.println("顯示第" + u.getPage() + "頁(yè)的數(shù)據(jù)");
System.out.println("輸入的查詢(xún)賬號(hào)是:" + u.getAct());
System.out.println(u.getSbirth());
System.out.println(u.getEbirth());
//亂碼處理
String act = u.getAct();
try {
if(act != null) {
act = new String(act.getBytes("iso8859-1"),"utf-8");
System.out.println(act);
act = "%" + act + "%";
u.setAct(act);
}
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
? ? Map<String,Object>map = new HashMap<String,Object>();
? ? List<Userinfo>list = userCountAllService.loadAll(u);
? ? map.put("rows", list);
? ? map.put("total", userCountAllService.countAll(u));
? ? return map;
? ? }
}


package com.SSHC.dao;
import java.util.List;
import org.springframework.stereotype.Repository;
import com.SSHC.bean.Userinfo;
@Repository
public interface UserinfoDao {
? ? List<Userinfo> selectAll(Userinfo u);
? ? Userinfo selectByActAndPwd(Userinfo u);
? ? List<Userinfo> totalAll(Userinfo u);
? ? Integer add(Userinfo u);
}


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
? ? PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"??
? ? "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- namespace不能亂寫(xiě),必須寫(xiě)成IUserinfoDao接口的全路徑 -->
<mapper namespace="com.SSHC.dao.UserinfoDao">
? ? <sql id="query">
? ? ? ? <where>
? ? <if test="act != null and act.length() > 0">
? ? ? ? and act like #{act}
? ? </if>
? ? <if test="sbirth != null">
? ? ? ? and birth >= #{sbirth}
? ? </if>
? ? <if test="ebirth != null">
? ? ? ? and birth <= #{ebirth}
? ? </if>
</where>
? ? </sql>
? ? <resultMap type="Userinfo" id="rmUserinfo">
? ? ? ? <id property="id" column="ID"/>
? ? <result property="act" column="ACT"/>
? ? <result property="pwd" column="PWD"/>
? ? <result property="birth" column="BIRTH"/>
? ? </resultMap>?
? ? <select id="selectAll" resultMap="rmUserinfo" parameterType="Userinfo">
? ? ? ? select * from
(
select t1.*,rownum rn from
(select * from userinfo
<include refid="query"></include>
) t1
where rownum <= #{end}
)
where rn >= #{start}
? ? </select>?
? ? <!-- List<Userinfo> totalAll(Userinfo u) -->
? ? <select id="totalAll" resultMap="rmUserinfo" parameterType="Userinfo">
? ? ? ? select * from userinfo
? ? ? ? <include refid="query"></include>
? ? </select>
? ? <!-- Userinfo selectByActAndPwd(String act,String pwd) -->
? ? <select id="selectByActAndPwd" resultMap="rmUserinfo"
? ? ? ? parameterType="Userinfo">
? ? ? ? select * from userinfo where act = #{act}?
? ? ? ? and pwd = #{pwd}
? ? </select>
? ? <insert id="add" parameterType="Userinfo">
? ? ? ? insert into Userinfo values?
? ? ? ? (seq_Userinfo.nextval,#{act},#{pwd},#{birth})
? ? </insert>?
</mapper>


package com.SSHC.service;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.SSHC.bean.Userinfo;
import com.SSHC.dao.UserinfoDao;
@Service
@Transactional
public class PublicService {
//屬性名就是接口名的首字母改成小寫(xiě)
@Resource
? ? private UserinfoDao userinfoDao;
? ??
? ? //登錄方法
? ? public Userinfo login(Userinfo u){
? ? return userinfoDao.selectByActAndPwd(u);
? ? }
? ??
? ? public Integer register(Userinfo u){
? ? Integer count=userinfoDao.add(u);
? ? return count;
? ? }
}


package com.SSHC.service;
import java.util.List;
import com.SSHC.bean.Userinfo;
public interface UserCountAllService {
? ? List<Userinfo>loadAll(Userinfo u);
? ? Integer countAll(Userinfo u);
}


package com.SSHC.service;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.SSHC.bean.Userinfo;
import com.SSHC.dao.UserinfoDao;
@Service
@Transactional
public class UserService implements UserCountAllService {
@Resource
? ? private UserinfoDao userinfoDao;
@Override
public List<Userinfo> loadAll(Userinfo u) {
// TODO Auto-generated method stub
//處理分頁(yè)參數(shù)
Integer page = u.getPage();
Integer rows = u.getRows();
Integer start = (page - 1) * rows + 1;
Integer end = page * rows;
u.setStart(start);
u.setEnd(end);
return userinfoDao.selectAll(u);
}
@Override
public Integer countAll(Userinfo u) {
// TODO Auto-generated method stub
List<Userinfo>list = userinfoDao.totalAll(u);
return list.size();
}
}


oracle_drivername=oracle.jdbc.driver.OracleDriver
oracle_url=jdbc:oracle:thin:@localhost:1521:orcl
oracle_username=X
oracle_password=sshcPwd


log4j.rootLogger=DEBUG,Console
#Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d[%t] %-5p [%c] - %m%n
log4j.logger.java.sql.ResultSet=INFO
log4j.logger.org.apache=INFO
log4j.logger.java.sql.Connection=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC?
"-//mybatis.org//DTD Config 3.0//EN"??
? ? "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>??
? ? <typeAliases>
? ? ? ? <package name="com.SSHC.bean"/>
? ? </typeAliases>
</configuration>



$(function(){
var oTable = new TableInit();
oTable.init();
//給查詢(xún)按鈕綁定點(diǎn)擊事件
$('#btn_query').click(function(){
//刷新表格(會(huì)進(jìn)行分頁(yè))
$("#tb_userinfo").bootstrapTable('refresh');
});
})
var TableInit = function(){
var objTable = {};
//定義表格的初始化的方法
objTable.init = function(){
$('#tb_userinfo').bootstrapTable({
url: 'ld', //請(qǐng)求后臺(tái)的URL(*)
method: 'get', //請(qǐng)求方式(*)
contentType: "application/x-www-form-urlencoded",
dataType:'json',//返回的數(shù)據(jù)類(lèi)型必須是json對(duì)象
toolbar: '#toolbar', //工具按鈕用哪個(gè)容器
striped: true, //是否顯示行間隔色
cache: false, //是否使用緩存,默認(rèn)為true,所以一般情況下需要設(shè)置一下這個(gè)屬性(*)
pagination: true, //是否顯示分頁(yè)(*)
sortable: false, //是否啟用排序
sortOrder: "asc", //排序方式,asc是升序,desc是降序
queryParams: function(params) {
//獲取查詢(xún)輸入的條件
var act = $('#s_act').val();
var startBirth = $('#s_birth_start').val();
var endBirth = $('#s_birth_end').val();
? ? ? ? var temp = { //這里的鍵的名字和控制器的變量名必須一致,這邊改動(dòng),控制器也需要改成一樣的
? ? ? ? rows: params.limit, //頁(yè)面大小
? ? ? ? page: (params.offset / params.limit) + 1, //頁(yè)碼
? ? ? ? act: act,
? ? ? ? sbirth: startBirth,
? ? ? ? ebirth: endBirth
? ? ? ? };
? ? ? ? return temp;
? ? ? ? }, //傳遞參數(shù)的方法(*)
sidePagination: "server", //分頁(yè)方式:client客戶端分頁(yè),server服務(wù)端分頁(yè)(*)
pageNumber: 1, //初始化加載第一頁(yè),默認(rèn)第一頁(yè)
pageSize: 5, //每頁(yè)的記錄行數(shù)(*)
pageList: [2, 3, 5, 10], //可供選擇的每頁(yè)的行數(shù)(*)
search: true, //是否顯示表格搜索,此搜索是客戶端搜索,不會(huì)進(jìn)服務(wù)端,所以,個(gè)人感覺(jué)意義不大
strictSearch: true,
showColumns: true, //是否顯示所有的列
showRefresh: true, //是否顯示刷新按鈕
minimumCountColumns: 2, //最少允許的列數(shù)
clickToSelect: true, //是否啟用點(diǎn)擊選中行
height: 700, //行高,如果沒(méi)有設(shè)置height屬性,表格自動(dòng)根據(jù)記錄條數(shù)覺(jué)得表格高度
uniqueId: "ID", //每一行的唯一標(biāo)識(shí),一般為主鍵列
showToggle: true, //是否顯示詳細(xì)視圖和列表視圖的切換按鈕
cardView: false, //是否顯示詳細(xì)視圖
detailView: false, //是否顯示父子表
onClickRow: function (row) {//點(diǎn)擊表格中的某一行時(shí)觸發(fā)這個(gè)函數(shù)
console.log(row);
? ? ? ? ? ? },
columns: [{
checkbox: true
}, {
field: 'id',
title: '編號(hào)'
}, {
field: 'act',
title: '賬號(hào)'
}, {
field: 'birth',
title: '生日'
}]
});
}
return objTable;
}


<?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"
? ? xmlns:tx="http://www.springframework.org/schema/tx"
? ? 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
? ? ? ? http://www.springframework.org/schema/tx?
? ? ? ? http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
? ? <!-- 配置掃描注解,不掃描帶有@Controller注解的類(lèi) -->
? ? <context:component-scan base-package="com.SSHC">
? ? ? ? <context:exclude-filter type="annotation"
? ? ? ? ? ? expression="org.springframework.stereotype.Controller" />
? ? </context:component-scan>
? ? <!-- 引入db.properties文件 -->
? ? <bean id="propertyConfigurer"?
? ? ? ? class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
? ? ? ? <property name="location" value="classpath:db.properties"/>
? ? </bean>
? ? <!--數(shù)據(jù)庫(kù)連接池配置-->
? ? <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"?
? ? ? ? destroy-method="close">??
? ? ? ? <property name="driverClassName" value="${oracle_drivername}"/>
? ? ? ? <property name="url" value="${oracle_url}"/>
? ? ? ? <property name="username" value="${oracle_username}"/>
? ? ? ? <property name="password" value="${oracle_password}"/>
? ? </bean>
? ? <!-- 創(chuàng)建sqlSessionFactory對(duì)象 -->
? ? <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
? ? ? ? <!-- 指定數(shù)據(jù)源 -->
? ? ? ? <property name="dataSource" ref="dataSource"/>
? ? ? ? <!-- 指定mybatis框架主配置文件的位置 -->
? ? ? ? <property name="configLocation" value="classpath:mybatis.xml"/>
? ? ? ? <!-- 自動(dòng)掃描mapping.xml文件,**表示迭代查找 ,,也可在mybatis.xml中單獨(dú)指定xml文件 -->
? ? ? ? <property name="mapperLocations" value="classpath:com/SSHC/dao/*.xml"/>
? ? </bean>?
? ? <!-- 自動(dòng)掃描com/SSHC/dao下的所有dao接口,并實(shí)現(xiàn)這些接口,
? ? ? ? ? ? ? ? ?可直接在程序中使用dao接口,不用再獲取sqlsession對(duì)象 -->
? ? <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
? ? ? ? <!-- basePackage 屬性是映射器接口文件的包路徑。
? ? ? ? ? ? ? ? ? ? ? ? 你可以使用分號(hào)或逗號(hào) 作為分隔符設(shè)置多于一個(gè)的包路徑-->
? ? ? ? <property name="basePackage" value="com/SSHC/dao"/>
? ? ? ? <!-- 因?yàn)闀?huì)自動(dòng)裝配 SqlSessionFactory和SqlSessionTemplate
? ? ? ? ? ? ? ? ? ? ? ? 所以沒(méi)有必要去指定SqlSessionFactory或 SqlSessionTemplate
? ? ? ? ? ? ? ? ? ? ? ? 因此可省略不配置;
? ? ? ? ? ? ? ? ? ? ? ? 但是,如果你使用了一個(gè)以上的 DataSource,那么自動(dòng)裝配可能會(huì)失效。
? ? ? ? ? ? ? ? ? ? ? ? 這種情況下,你可以使用sqlSessionFactoryBeanName或sqlSessionTemplateBeanName屬性
? ? ? ? ? ? ? ? ? ? ? ? 來(lái)設(shè)置正確的 bean名稱(chēng)來(lái)使用 -->
? ? ? ? ?<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
? ? </bean>
? ? <!-- 配置事務(wù)管理器 -->
? ? <bean id="transactionManager"
? ? ? ? class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
? ? ? ? <property name="dataSource" ref="dataSource" />
? ? </bean>
? ? <!--? 使用聲明式事務(wù) transaction-manager:引用上面定義的事務(wù)管理器 -->
? ? <tx:annotation-driven transaction-manager="transactionManager"/>
</beans>


? ? ? ? <link rel="stylesheet" href="css/bootstrap.css">
? ? ? ? <link rel="stylesheet" href="css/bootstrap-table.css">
? ? ? ? <script type="text/javascript" srcc="js/jquery-1.11.0.js"></script>
? ? ? ? <script type="text/javascript" srcc="js/bootstrap.js"></script>
<script srcc="js/bootstrap-table.js"></script>
<script srcc="js/bootstrap-table-zh-CN.js"></script>
<script type="text/javascript" srcc="selfjs/index.js"></script>? ? ? ?
? ? </head>
? ? <body>
? ? ? ? <div class="panel-body" style="padding-bottom:0px;">
? ? ? ? ? ? <!-- 查詢(xún)面板 -->
<div class="panel panel-default">
<div class="panel-heading">查詢(xún)條件</div>
<div class="panel-body">
<form id="formSearch" class="form-horizontal">
<div class="form-group" style="margin-top:15px">
<label class="control-label col-sm-1" for="s_act">賬號(hào)</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="s_act">
</div>
<label class="control-label col-sm-1" for="s_birth">生日起始</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="s_birth_start">
</div>
<label class="control-label col-sm-1" for="s_birth">到</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="s_birth_end">
</div>
<div class="col-sm-3" style="text-align:left;">
<button type="button" style="margin-left:50px" id="btn_query" class="btn btn-primary">查詢(xún)</button>
</div>
</div>
</form>
</div>
</div>
? ? ? ? ? ? <!-- 表格上方的工具欄 -->
<div id="toolbar" class="btn-group">
<button id="btn_add" type="button" class="btn btn-default">
? ? ? ? ? ? ? ? ? ? <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>新增
? ? ? ? ? ? ? ? </button>
<button id="btn_edit" type="button" class="btn btn-default">
? ? ? ? ? ? ? ? ? ? <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>修改
? ? ? ? ? ? ? ? </button>
<button id="btn_delete" type="button" class="btn btn-default">
? ? ? ? ? ? ? ? ? ? <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>刪除
? ? ? ? ? ? ? ? </button>
</div>
<!-- 數(shù)據(jù)展示 -->
<table id="tb_userinfo"></table>
</div>
? ? </body>
</html>


? ? ? ? <style type="text/css">
? ? ? ? ? ? *{
? ? ? ? ? ? ? ? font-size: 50px;
? ? ? ? ? ? }
? ? ? ? </style>
? ? </head>
? ? <body>
? ? ? ? <form action="RequestMappingLogin" method="post">
? ? ? ? ? ? <label>賬號(hào):</label><input type="text" name="act"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>密碼:</label><input type="password" name="pwd"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="submit" value="登錄" />
? ? ? ? ? ? 還沒(méi)有注冊(cè)?
<a href="http://localhost:8080/Ssmbootstrap1/toRegister">注冊(cè)</a>
? ? ? ? </form>
? ? ? ? <div>${msg }</div>
? ? </body>
</html>


? ? ? ? <style type="text/css">
? ? ? ? ? ? *{
? ? ? ? ? ? ? ? font-size: 50px;
? ? ? ? ? ? }
? ? ? ? </style>
? ? </head>
? ? <body>
? ? ? ? <form action="RequestMappingRegister" method="post">
? ??
? ? ? ? ? ? <label>賬號(hào):</label><input type="text" name="act"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>密碼:</label><input type="password" name="pwd"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>生日:</label><input type="date" name="birth"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="submit" value="注冊(cè)" />
? ? ? ? ? ? 已經(jīng)注冊(cè)?
<a href="http://localhost:8080/Ssmbootstrap1/toLogin">登錄</a>
? ? ? ? </form>
? ? ? ? <div>${msg }</div>
? ? </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">? ? ? ? ? ? ? ? ? ? ? ?
? ? <!-- 掃描@Controller注解 -->
? ? <context:component-scan base-package="com.SSHC.controller">
? ? ? ? <context:include-filter type="annotation"
? ? ? ? ? ? expression="org.springframework.stereotype.Controller" />
? ? </context:component-scan>
? ? <!-- 默認(rèn)注冊(cè)RequestMappingHandlerMapping和RequestMappingHandlerAdapter類(lèi) -->
? ? <mvc:annotation-driven />
? ? <!-- jsp引用外部js,css等靜態(tài)資源的解決方法(和上面的標(biāo)簽必須同時(shí)出現(xiàn),否則無(wú)法訪問(wèn)url) -->
? ? <mvc:default-servlet-handler />
? ? <!-- 配置視圖名稱(chēng)解析器 -->
? ? <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)先級(jí)設(shè)定 -->
? ? ? ? <property name="order" value="10"></property>
? ? </bean>?
? ? <!-- http://localhost:8080/Ssmbootstrap1/toLogin -->
? ? <mvc:view-controller path="/toLogin" view-name="login"/>
? ? ? ? <!-- http://localhost:8080/Ssmbootstrap1/toRegister -->
? ? <mvc:view-controller path="/toRegister" view-name="register"/>?
? ? ? <!-- http://localhost:8080/Ssmbootstrap1/toIndex -->
? ? <mvc:view-controller path="/toIndex" view-name="index"/>?
</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>Ssmbootstrap1</display-name>
? <listener>
? ? <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
? </listener>
? <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>
? <servlet>
? ? <servlet-name>springmvc</servlet-name>
? ? <servlet-class>
? ? ? ? ? org.springframework.web.servlet.DispatcherServlet
? ? ? </servlet-class>
? ? <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ùn)行效果:
登錄:http://localhost:8080/Ssmbootstrap1/toLogin
注冊(cè):http://localhost:8080/Ssmbootstrap1/toRegister
主頁(yè):http://localhost:8080/Ssmbootstrap1/toIndex
主頁(yè):http://localhost:8080/Ssmbootstrap1/index.jsp







