SSM框架簡介,PPT,查詢功能,dbcp數(shù)據(jù)庫連接池,interface接口,service【詩書畫唱】
個人小總結(jié)&我的奇妙比喻:Spring容器就像是“天降”,"new"關(guān)鍵字就像是”青梅“,項目就是”竹馬“,”青梅“敵不過“天降”?;蛘哒f,Spring等框架就是取代被漸漸跟不上與滿足不了高效需要的老一輩的“new”的新生代。Spring容器,框架等等就是欺負“new”關(guān)鍵字等等的家伙, 把“new”關(guān)鍵字等等都“趕盡殺絕”,取代,“謀權(quán)篡位”,趕走等的“好家伙”(其實很多新老技術(shù)等等的關(guān)系都可以用我這些的奇妙比喻來解釋)。
個人感悟:淦!目前每天學習,寫代碼等等都要耗費我大半天,害得我高創(chuàng)視頻,高創(chuàng)原創(chuàng)音樂作品,高創(chuàng)翻唱歌曲,高創(chuàng)動漫等等一直沒時間做!以后努力多創(chuàng)作更多更高創(chuàng)的作品!
概括:
SSM框架簡介
邊看教程視頻邊記錄的學習筆記
Mybatis框架中XXXSqlMap.xml映射文件的namespace的接口等的設(shè)置
映射文件中的namespace中寫的類的全路徑不可以寫錯,必須要存在,不然會報錯
Userinfo等interface接口中代碼的作用是:獲取其接口的“實現(xiàn)類”
實現(xiàn)查詢功能
實現(xiàn)新增功能
insert語句新增時,要通過使用序列來給id列賦值
個人對dbcp數(shù)據(jù)庫連接池的理解
只要配置文件的value設(shè)置中出現(xiàn)“classpath”的部分,就說明其mybatis.xml等的部分的文件是放在src的目錄下的文件。
個人理解:ref=“XXX”就是引用id為“XXX”的bean標簽等的部分
這里的value=“XXX/XXX/XXX”的意思是:要掃碼XXX/XXX/XXX這個目錄下的習慣命名為XXXDao格式等的interface接口
配置習慣命名為XXXDao格式的interface接口的實現(xiàn)類
千萬要記住導入的dbcp數(shù)據(jù)庫連接池的包
個人理解這里不報空指針異常的原因是:@Autowired注解自動把實現(xiàn)類注入到userinfoDao接口中
我創(chuàng)建test類等等是為了測試Spring MVC框架等是否被我使用成功
界面跳轉(zhuǎn)成功說明Spring MVC框架被我成功整合到項目里面了,也就是說被我使用成功了
個人理解:要特別注意的是,在service中的屬性名要是首字母被改成小寫字母的接口名,因為這個項目使用了ByName的自動注入,不這樣的話,就可能發(fā)生“識別等錯誤,找不到”等的錯誤,就會發(fā)生報錯。
SSM框架中的查詢部分
在controller中調(diào)用service中的方法
6、SPRING框架_集成.ppt
講義
例子記錄
例子記錄的運行效果
例子記錄的Oracle數(shù)據(jù)庫部分
運行項目的方法

SSM框架簡介 START
SSM(Spring+SpringMVC+MyBatis,或說SSM是Springmvc+Springcore+Mybatis,曾經(jīng)問過老師,他的理解:Springcore框架就是Spring框架。)框架集由Spring、MyBatis兩個開源框架整合而成(SpringMVC是Spring中的部分內(nèi)容)。常作為數(shù)據(jù)源較簡單的web項目的框架。

SSM框架簡介 END
邊看教程視頻邊記錄的學習筆記 START
個人理解:集成框架就是多個框架整合而成的框架。
Bootstrap類似于easyui,都是用于寫界面更美觀和方便高效的。



實現(xiàn)查詢功能 START







實現(xiàn)查詢功能 END
實現(xiàn)新增功能 START


實現(xiàn)新增功能?END





個人對dbcp數(shù)據(jù)庫連接池的理解:dbcp數(shù)據(jù)庫連接池會在空閑的時候創(chuàng)建對象,在要用的時候就是會從dbcp數(shù)據(jù)庫連接池中調(diào)用,不用時就是會“銷毀”,把數(shù)據(jù)“還回”到dbcp數(shù)據(jù)庫連接池中,這樣調(diào)用等的時間就會變很短,項目運行的時間會因為使用了dbcp數(shù)據(jù)庫連接池而變得更短,就變得更高效?,F(xiàn)在做得項目很小,訪問量不很大,感覺優(yōu)點不明顯,一但做每天訪問量很大,比如淘寶網(wǎng)每天一億訪問量等的項目時,其dbcp數(shù)據(jù)庫連接池的優(yōu)點就變得更明顯了。

在使用Spring Core框架后就可以不用寫session的部分,其session的部分實現(xiàn)的功能的代碼就是寫在配置文件中了。


只要配置文件的value設(shè)置中出現(xiàn)“classpath”的部分,就說明其mybatis.xml等的部分的文件是放在src的目錄下的文件。

只要配置文件的value設(shè)置中出現(xiàn)“classpath”的部分,就說明其mybatis.xml等的部分的文件是放在src的目錄下的文件。


個人理解:ref=“XXX”就是引用id為“XXX”的bean標簽等的部分(ref表明使用了setter注入中的引用注入)


這里的value=“XXX/XXX/XXX”的意思是:要掃碼XXX/XXX/XXX這個目錄下的習慣命名為XXXDao格式等的interface接口





個人理解這里不報空指針異常的原因是:@Autowired注解自動把實現(xiàn)類注入到userinfoDao接口中

個人理解這里不報空指針異常的原因是:@Autowired注解自動把實現(xiàn)類注入到userinfoDao接口中



界面跳轉(zhuǎn)成功說明Spring MVC框架被我成功整合到項目里面了,也就是說被我使用成功了




個人理解:要特別注意的是,在service中的屬性名要是首字母被改成小寫字母的接口名,因為這個項目使用了ByName的自動注入,不這樣的話,就可能發(fā)生“識別等錯誤,找不到”等的錯誤,就會發(fā)生報錯。


SSM框架中的查詢部分 START





SSM框架中的查詢部分 END
邊看教程視頻邊記錄的學習筆記 END
6、SPRING框架_集成.ppt
















SPRINGMVC框架
集成
概述
springmvc整合mybatis框架
Springmvc和mybatis框架整合
步驟一:創(chuàng)建一個javaweb項目。
步驟二:導入mybatis框架包、日志包log4j.jar和數(shù)據(jù)庫驅(qū)動包(本例中使用oracle數(shù)據(jù)庫)。
步驟三:在src目錄下創(chuàng)建mybatis.xml主配置文件、db.properties數(shù)據(jù)庫配置文件以及l(fā)og4j.properties日志文件(能夠打印后臺sql語句)。
步驟四:在oracle數(shù)據(jù)庫中創(chuàng)建一個測試表,對mybatis框架進行測試。
Springmvc和mybatis框架整合
步驟五:創(chuàng)建實體類net.jy.bean.Mytest。
Springmvc和mybatis框架整合
? 步驟六:創(chuàng)建映射文件net.jy.dao.MytestMapper.xml和對應的接口MytestMapper類。
Springmvc和mybatis框架整合
? 步驟七:修改mybatis.xml文件注冊映射接口并在一個main方法中進行測試。
Springmvc和mybatis框架整合
? 步驟八:接下來我們需要對springcore框架和mybatis框架進行整合。導入springcore框架包和兩個框架的整合包mybatis-spring-1.2.3.jar。
? ?步驟九:修改web.xml文件,添加spring監(jiān)聽器。
Springmvc和mybatis框架整合
? 步驟十:創(chuàng)建TestBean類,并在WEB-INF/applicationContext.xml文件中注冊該類。
Springmvc和mybatis框架整合
? 步驟十一:創(chuàng)建一個servlet類,在servlet中調(diào)用TestBean中的say方法。
Springmvc和mybatis框架整合
? 步驟十二:導入mybatis-spring-1.2.3.jar整合包,修改applicationContext.xml文件。同時要導入dbcp數(shù)據(jù)庫連接池包commons-dbcp-1.2.jar。
Springmvc和mybatis框架整合
? 步驟十二:修改applicationContext.xml文件。
Springmvc和mybatis框架整合
? 步驟十三:修改mybatis.xml文件,現(xiàn)在mybatis的session對象已經(jīng)交給spring容器管理了。
Springmvc和mybatis框架整合
? ?步驟十四:修改TestBean中的代碼。
Springmvc和mybatis框架整合
? 步驟十五:再次運行TestServlet,觀察運行效果。現(xiàn)在我們的jdbc編程完全不需要寫連接語句了。
Springmvc和mybatis框架整合
? 步驟十六:在WEB-INF目錄下創(chuàng)建springmvc-servlet.xml文件。并且導入springmvc的框架包。
Springmvc和mybatis框架整合
? 步驟十七:修改web.xml文件,添加springmvc框架配置。
Springmvc和mybatis框架整合
? 步驟十八:創(chuàng)建net.jy.controller.TestController類,同時創(chuàng)建WEB-INF/page/index.jsp頁面進行mvc框架測試。
Springmvc和mybatis框架整合
? 步驟十八:創(chuàng)建net.jy.controller.TestController類,同時創(chuàng)建WEB-INF/page/index.jsp頁面進行mvc框架測試。
Springmvc和mybatis框架整合
? 步驟十九:修改springmvc-servlet.xml配置文件。
Springmvc和mybatis框架整合
? 步驟二十:修改MytestMapper接口中的代碼。
? ?注意:@Repository(value="userDao")注解是告訴Spring,讓Spring創(chuàng)建一個名字叫“userDao”的UserDaoImpl實例。當Service需要使用Spring創(chuàng)建的名字叫“userDao”的UserDaoImpl實例時,就可以使用@Resource(name = "userDao")注解告訴Spring,Spring把創(chuàng)建好的userDao注入給Service即可。
Springmvc和mybatis框架整合
? 步驟二十一:創(chuàng)建net.jy.service.PubService類。
? ?注意:@Service("userService")注解是告訴Spring,當Spring要創(chuàng)建UserServiceImpl的的實例時,bean的名字必須叫做"userService",這樣當Action需要使用UserServiceImpl的的實例時,就可以由Spring創(chuàng)建好的"userService",然后注入給Action。
Springmvc和mybatis框架整合
? 步驟二十二:修改TestController類。
Springmvc和mybatis框架整合
? 步驟二十三:重啟工程,進行測試。
Springmvc和mybatis框架整合
? 步驟二十四:修改MytestMapper類,添加一個新增的方法。
Springmvc和mybatis框架整合
? 步驟二十五:修改MytestMapper配置文件,配置新增的方法的xml。
Springmvc和mybatis框架整合
? 步驟二十六:修改PubService類,添加register方法。
Springmvc和mybatis框架整合
? 步驟二十七:修改TestController類,添加reg方法。重啟工程,訪問這個路徑會發(fā)現(xiàn),id為4的數(shù)據(jù)并沒有插入到數(shù)據(jù)庫。這是因為事務沒有提交。
Springmvc和mybatis框架整合
? 步驟二十八:下面給PubService類添加事務管理。在applicationContext.xml的beans標簽中添加如如下的三行代碼(tx)。
Springmvc和mybatis框架整合
? 步驟二十九:在applicationContext.xml配置文件中添加如下的代碼。
Springmvc和mybatis框架整合
? 步驟三十:在springmvc-servlet.xml配置文件中修改配置代碼。將上面的代碼替換成下面的代碼
Springmvc和mybatis框架整合
? 步驟三十一:修改TestController類,代碼如下:
Springmvc和mybatis框架整合
? 步驟三十二:修改PubService類,添加一個@Transactional注解:
Springmvc和mybatis框架整合
? 步驟三十二:進行事務測試
6、SPRING框架_集成.ppt
講義 START

集成框架:在項目中同時引入三個框架
Springmvc+Springcore+Mybatis
Oracle數(shù)據(jù)庫
Bootstrap庫

講義 END
例子記錄 START

package com.SSHC.bean;
import java.util.Date;
public class Userinfo {
? ? private Integer id;
? ? private String act;
? ? private String pwd;
? ? private Date birth;
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;
}
}


package com.SSHC.controller;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.SSHC.service.PubService;
@Controller
public class TestController {
@Resource
private PubService pubService;
//http://localhost:8080/SSM1/test
@RequestMapping("test")
? ? public String hello(){
pubService.testSv();
? ? return "test";
? ? }
}


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();
? ? 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不能亂寫,必須寫成UserinfoDao接口的全路徑 -->
<mapper namespace="com.SSHC.dao.UserinfoDao">
? ? <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">
? ? ? ? select * from userinfo
? ? </select>??
? ? <!-- public Integer add(Userinfo u) -->
? ? <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 com.SSHC.bean.Userinfo;
import com.SSHC.dao.UserinfoDao;
@Service
public class PubService {
//屬性名就是接口名的首字母改成小寫
@Resource
? ? private UserinfoDao userinfoDao;
? ? public void testSv(){
? ? List<Userinfo>list = userinfoDao.selectAll();
? ? for(Userinfo u : list) {
? ? System.out.println(u.getAct());
? ? }
? ? }
}

package com.SSHC.test;
import java.io.IOException;
import java.io.Reader;
import java.util.Date;
import java.util.List;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import com.SSHC.bean.Userinfo;
import com.SSHC.dao.UserinfoDao;
public class Test {
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
? ? ? ? Reader reader = Resources.getResourceAsReader("mybatis.xml");
? ? ? ? SqlSessionFactory factory =?
? ? ? ? new SqlSessionFactoryBuilder().build(reader);
? ? ? ? SqlSession session = factory.openSession();
? ? ? ? UserinfoDao userinfoDao =?
? ? ? ? session.getMapper(UserinfoDao.class);
//? ? ? ? List<Userinfo>list = userinfoDao.selectAll();
//? ? ? ? for(Userinfo u : list) {
//? ? ? ? System.out.println(u.getAct());
//? ? ? ? }
? ? ? ??
? ? ? ? Userinfo user = new Userinfo();
? ? ? ? user.setAct("詩書畫唱");
? ? ? ? user.setPwd("666666");
? ? ? ? user.setBirth(new Date());
? ? ? ? Integer count = userinfoDao.add(user);
? ? ? ? System.out.println(count);
? ? ? ? session.commit();
}
}


package com.SSHC.test;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import com.SSHC.bean.Userinfo;
import com.SSHC.dao.UserinfoDao;
public class TestBean {
@Autowired
/*wired:有線的。
英 [?wa??d]美 [?wa??rd]
adj.
聯(lián)網(wǎng)的;利用計算機收發(fā)信息的;焦慮的;緊張的;
不安的;有線的;受毒品(或酒精)影響的;吸了毒的;喝醉了的
*/private UserinfoDao userinfoDao;
? ? public void say(){
? ? List<Userinfo>list = userinfoDao.selectAll();
? ? for(Userinfo u : list) {
? ? System.out.println(u.getAct());
? ? }
? ? }
}


package com.SSHC.test;
import java.io.IOException;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
/**
?* Servlet implementation class TestServlet
?*/
@WebServlet("/ts")
public class TestServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
? ? ? ?
? ? /**
? ? ?* @see HttpServlet#HttpServlet()
? ? ?*/
? ? public TestServlet() {
? ? ? ? super();
? ? ? ? // TODO Auto-generated constructor stub
? ? }
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
this.doPost(request, response);
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
//獲取spring容器
ServletContext sc = this.getServletContext();
WebApplicationContext wac = WebApplicationContextUtils
.getWebApplicationContext(sc);
TestBean tb = (TestBean) wac.getBean("tb");
tb.say();
}
}


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>
? ? <!-- Aliases:別名[?e?l??s?z]?
? ??
configuration
英[k?n?f?ɡ??re??n]
美[k?n?f?ɡj??re??n]
n. 布局; 結(jié)構(gòu); 【構(gòu)造】;?
格局; 形狀; (計算機的)配置
注:【】中的內(nèi)容是我認為有目前我要知道的重要意思之一。-->
? ? ? ? <package name="com.SSHC.bean"/>
? ? </typeAliases>
</configuration>


<?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">
? ? <bean id="tb" class="com.SSHC.test.TestBean"></bean>
? ? <!-- 引入db.properties文件 -->
? ? <bean id="propertyConfigurer"?
? ? ? ? class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
? ? ? ? <property name="location" value="classpath:db.properties"/>
? ? </bean>
? ? <!--數(shù)據(jù)庫連接池配置-->
? ? <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對象 -->
? ? <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
? ? ? ? <!-- 指定數(shù)據(jù)源 -->
? ? ? ? <property name="dataSource" ref="dataSource"/>
? ? ? ? <!-- 指定mybatis框架主配置文件的位置 -->
? ? ? ? <property name="configLocation" value="classpath:mybatis.xml"/>
? ? ? ? <!-- 自動掃描mapping.xml文件,**表示迭代查找 ,,也可在mybatis.xml中單獨指定xml文件 -->
? ? ? ? <property name="mapperLocations" value="classpath:com/SSHC/dao/*.xml"/>
? ? </bean>?
? ? <!-- 自動掃描com/SSHC/dao下的所有dao接口,并實現(xiàn)這些接口,
? ? ? ? ? ? ? ? ?可直接在程序中使用dao接口,不用再獲取sqlsession對象 -->
? ? <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
? ? ? ? <!-- basePackage 屬性是映射器接口文件的包路徑。
? ? ? ? ? ? ? ? ? ? ? ? 你可以使用分號或逗號 作為分隔符設(shè)置多于一個的包路徑-->
? ? ? ? <property name="basePackage" value="com/SSHC/dao"/>
? ? ? ? <!-- 因為會自動裝配 SqlSessionFactory和SqlSessionTemplate
? ? ? ? ? ? ? ? ? ? ? ? 所以沒有必要去指定SqlSessionFactory或 SqlSessionTemplate
? ? ? ? ? ? ? ? ? ? ? ? 因此可省略不配置;
? ? ? ? ? ? ? ? ? ? ? ? 但是,如果你使用了一個以上的 DataSource,那么自動裝配可能會失效。
? ? ? ? ? ? ? ? ? ? ? ? 這種情況下,你可以使用sqlSessionFactoryBeanName或sqlSessionTemplateBeanName屬性
? ? ? ? ? ? ? ? ? ? ? ? 來設(shè)置正確的 bean名稱來使用 -->
? ? ? ? ?<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
? ? </bean>
</beans>

<?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.dao,com.SSHC.service,com.SSHC.controller"/>
? ? <!-- 默認注冊RequestMappingHandlerMapping和RequestMappingHandlerAdapter類 -->
? ? <mvc:annotation-driven />
? ? <!-- jsp引用外部js,css等靜態(tài)資源的解決方法(和上面的標簽必須同時出現(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>??
</beans>

<%@ 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">
? ? </head>
? ? <body>
? ? ? ? <h1>測試成功</h1>
? ? </body>
</html>


<?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>SSM1</display-name>
? <!-- springcore框架配置 -->
? <listener>
? ? <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
? </listener>
? <!-- controller中文亂碼處理,注意一點:要配置在所有過濾器的前面 -->
? <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框架配置 -->
? <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>





例子記錄的Oracle數(shù)據(jù)庫部分:
?--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? ? ?--增長的值? ?
maxvalue 999999999 --序列號的最大值
minvalue 1? ? ? ? ?--序列號的最小值
nocycle? ? ? ? ? ? --是否循環(huán)
cache 10;? ? ? ? ? --預存
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,'藍藍','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,'詩書畫唱','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,'詩書畫唱1','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩書畫唱2','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩書畫唱3','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩書畫唱4','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
insert into Userinfo values(seq_Userinfo.nextval,'詩書畫唱5','pwd4',to_date('2020-06-06','yyyy-mm-dd'));
--select * from Userinfo?
運行項目的方法:

