mybatis逆向工程和SSM框架整合
一、資料庫逆向工程
1、安裝mysql資料庫,建立資料庫,將資料庫的指令碼匯入資料庫管理工具。
2、使用mybatis-generator生成pojo、mapper介面及mapper對映檔案。pojo是根據資料庫中的欄位逆向生成的,mapper介面是java檔案,mapper對映檔案是xml檔案。
3、將pojo複製到taotao-manager-pojo工程中,將mapper介面及對映檔案複製到taotao-manager-dao工程中。
pojo工程中存有TbContent.java、TbContentExample.java
dao工程中存有TbContentMapper.java、TbContentMapper.xml
TbContent.java:序列化物件,getset。
具體步驟:
1、將generatorSqlmap工程(不是maven工程)匯入workspace中
2、在工程中的generatorConfig.xml檔案裡設定
2.1配置連線資料庫資訊:驅動類、連線地址、使用者名稱、密碼
<jdbcConnection driveClass="com.mysql.jdbc.Driver" connectionUrl="jdbc:mysql://localhost:3306/taotao" userId="root" password="root">
</jdbcConnection>
2.2配置pojo、mapper指定路徑
<!--targetProject:生成pojo的位置-->
<javaModelGenerator targetPackage="com.taotao.pojo" targetProject=".\src">
...
</javaModelGenerator>
<!--targetProject:生成mapper對映檔案的位置-->
<sqlMapGenerator targetPackage="com.taotao.mapper" targetProject=".\src">
...
</sqlMapGenerator>
<!--targetProject:生成mapper介面的位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.taotao.mapper" targetProject=".\src">
...
</javaClientGenerator>
2.3指定資料庫表,與資料庫中的表對應
<table schema="" tableName="tb_content"></table>
<table schema="" tableName="tb_content_category"></table>
<table schema="" tableName="tb_item"></table>
<table schema="" tableName="tb_item_cat"></table>
<table schema="" tableName="tb_item_desc"></table>
<table schema="" tableName="tb_item_param"></table>
<table schema="" tableName="tb_item_param_item"></table>
<table schema="" tableName="tb_order"></table>
<table schema="" tableName="tb_order_item"></table>
<table schema="" tableName="tb_order_shipping"></table>
<table schema="" tableName="tb_user"></table>
3、執行generatorSqlmap工程下的GeneratorSqlmap類中的main函式,run as>java application。
4、把逆向生成的com.taotao.mapper,com.taotao.pojo兩個package複製到自己的工程下。
二、SSM框架整合
- 服務層的spring-dao、spring-service、spring-trans等(父)容器由web.xml中的ContextLoaderListener初始化。
- 表現層的springmvc(子)容器由web.xml中的DispatcherServlet初始化。
父容器不能訪問子容器物件,子容器可以訪問父容器物件。
1、Dao整合
1.1、建立SqlMapConfig.xml配置檔案
在taotao-manager-service工程中建立resource》mybatis》SqlMapConfig.xml,配置如下:
<configuration>
<!-- 配置分頁外掛 -->
<plugins>
<plugin interceptor="com.github.pagehelper.PageHelper">
<!-- 配置資料庫的方言 -->
<!-- 設定資料庫型別 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六種資料庫-->
<property name="dialect" value="mysql"/>
</plugin>
</plugins>
</configuration>
1.2、Spring整合mybatis,建立applicationContext-dao.xml
在taotao-manager-service工程中建立resource》spring》applicationContext-dao.xml,
所有service實現類都放在spring容器中管理,由spring配置資料庫連線池,管理SqlSessionFactory、Mapper代理物件,
<!-- 配置資料庫連線池 -->
<!-- 載入配置檔案 -->
<context:property-placeholder location="classpath:properties/*.properties" />
<!-- 資料庫連線池 -->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
destroy-method="close">
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="driverClassName" value="${jdbc.driver}" />
<property name="maxActive" value="10" />
<property name="minIdle" value="5" />
</bean>
<!-- SqlSessionFactory -->
<!-- 讓spring管理sqlsessionfactory 使用mybatis和spring整合包中的 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 資料庫連線池 -->
<property name="dataSource" ref="dataSource" />
<!-- 載入mybatis的全域性配置檔案 -->
<property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml" />
</bean>
<!-- Mapper對映檔案的包掃描器 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.taotao.mapper" />
</bean>
resource》properties》db.properties中如下:
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://192.168.25.134:3306/taotao?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root
Druid是目前最好的資料庫連線池,在功能、效能、擴充套件性方面,都超過其它資料庫連線池,包括DBCP、C3P0、BoneCP、Proxool、JBoss DataSource.
2、Service整合
2.1、管理service
在taotao-manager-service工程中建立resource》spring》applicationContext-service.xml,配置如下:
<!-- 配置包掃描器,掃描所有帶@Service註解的類 -->
<context:component-scan base-package="com.taotao.service"/>
2.2、事務管理
在taotao-manager-service工程中建立resource》spring》applicationContext-trans.xml,配置如下:
<!-- 事務管理器 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 資料來源 -->
<property name="dataSource" ref="dataSource" />
</bean>
<!-- 通知 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 傳播行為 -->
<tx:method name="save*" propagation="REQUIRED" />
<tx:method name="insert*" propagation="REQUIRED" />
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="create*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
<tx:method name="select*" propagation="SUPPORTS" read-only="true" />
<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>
<!-- 切面 -->
<aop:config>
<aop:advisor advice-ref="txAdvice"
pointcut="execution(* com.taotao.service.*.*(..))" />
</aop:config>
2.3、web.xml管理
在taotao-manager-service工程中建立resources》webapp》WEB-INF》web.xml,配置如下:
<display-name>taotao-manager</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<!-- 初始化spring容器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext-*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
3、表現層整合
3.1、sprigmvc.xml
在taotao-manager-web工程中建立resources》spring》springmvc.xml,配置如下:
<!-- 載入屬性檔案 -->
<context:property-placeholder location="classpath:resource/resource.properties"/>
<!-- 配置註解驅動 -->
<mvc:annotation-driven />
<!-- 檢視解析器 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
3.2、web.xml
在taotao-manager-web工程中建立resources》webapp》WEB-INF》web.xml,配置如下:
<display-name>taotao-manager-web</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<!-- post亂碼過濾器 -->
<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>taotao-manager-web</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- contextConfigLocation不是必須的, 如果不配置contextConfigLocation, springmvc的配置檔案預設在:WEB-INF/servlet的name+"-servlet.xml" -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/springmvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>taotao-manager-web</servlet-name>
<!-- 攔截所有請求jsp除外 -->
<url-pattern>/</url-pattern>
</servlet-mapping>
相關文章
- 【SSM-MyBatis框架】逆向工程SSMMyBatis框架
- Mybatis逆向工程MyBatis
- SSM框架整合SSM框架
- 整合SSM框架SSM框架
- springboot整合mybatis增刪改查(三):mybatis逆向工程Spring BootMyBatis
- Maven整合SSM框架(maven+spring+springmvc+mybatis)MavenSSM框架SpringMVCMyBatis
- mybatis的逆向工程MyBatis
- ibatis和myBatis的逆向工程使用MyBatis
- SSM框架的整合SSM框架
- SSM(Spring-MyBatis-SpringMVC)框架整合【完整版】SSMMyBatisSpringMVC框架
- SSM框架——詳細整合教程(Spring+SpringMVC+MyBatis)SSM框架SpringMVCMyBatis
- SSM框架——具體整合教程(Spring+SpringMVC+MyBatis)SSM框架SpringMVCMyBatis
- Mybatis20_ssm整合10MyBatisSSM
- Mybatis逆向工程和新版本MybatisPlus3.4逆向工程的使用MyBatisS3
- 小白的MyBatis逆向工程MyBatis
- SSM框架整合流程SSM框架
- SSM框架整合開發SSM框架
- ssm框架整合筆記SSM框架筆記
- SSM框架快速整合redisSSM框架Redis
- 快速整合搭建SSM框架SSM框架
- SSM——Spring整合SpringMVC,MyBatisSSMSpringMVCMyBatis
- SSM(SpringMVC + Spring + Mybatis)整合SSMSpringMVCMyBatis
- SSM整合(Spring、SpringMVC、Mybatis)SSMSpringMVCMyBatis
- SSM三大框架整合詳細教程(Spring+SpringMVC+MyBatis)SSM框架SpringMVCMyBatis
- mybatis與spring整合ssm01MyBatisSpringSSM
- SSM框架整合(配置檔案)SSM框架
- 筆記:MyBatis逆向工程 - Win/Mac筆記MyBatisMac
- Maven外掛生成myBatis逆向工程MavenMyBatis
- [Android]後端之路--整合SSM(Spring+SpringMVC+MyBatis)框架(2)Android後端SSMSpringMVCMyBatis框架
- 最容易的ssm三大框架整合(spring+springmvc+mybatis)教程SSM框架SpringMVCMyBatis
- Mybatis整合Spring(ssm整合待續)-day04MyBatisSpringSSM
- Mybatis和其他主流框架的整合使用MyBatis框架
- 【SSM整合】-Maven管理SSM框架的pom.xml配置SSMMaven框架XML
- 【Java】SSM框架整合 附原始碼JavaSSM框架原始碼
- mybatis入門基礎(九)----逆向工程MyBatis
- SSM三大框架整合詳細教程SSM框架
- SpringMVC(3)- 校驗框架、SSM整合SpringMVC框架SSM
- SSM框架整合——書籍管理系統SSM框架