使用spring完成傳統的dao層加biz(service層)
新建org.test.spring.service和org.test.spring.service.impl包
新建介面peopleservice,**如下:
package org.test.spring.service;
import org.test.mybatis.model.people;
public inte***ce peopleservice
新建介面實現
package org.test.spring.service.impl;
import org.mybatis.spring.support.sqlsessiondaosupport;
import org.test.mybatis.model.people;
import org.test.spring.service.peopleservice;
public class peopleserviceimpl extends sqlsessiondaosupport implements peopleservice
}
select * from people where id=#
spring.configuration.xml檔案中註冊元件
在main類中新增**:
peopleservice pse=(peopleservice)ac.getbean("peopleservice");
people people= pse.selectonebyid(5);
system.out.println(people.getrealname());
如此,變相使用了sqlsession來完成了service層,當然以上所述直接跳過了dao層.
至於sql語句配置在外面還是註解在介面上,根據情況自行使用
構建Mybatis專案 三
將spring3和mybatis3整合 新增依賴檔案 commons dbcp 1.4.jar commons logging 1.1.1.jar commons pool 1.5.5.jar mybatis spring 1.0.0.jar org.springframework.asm 3.0....
Mybatis 二 框架構建
org.mybatis mybatis x.x.x 核心配置檔案路徑 string resource mybatis config.xml 載入資源檔案 inputstream inputstream resources.getresourceasstream resource 構建出sqlsess...
構建vuejs專案
目的 在d盤myvue下構建vue專案 過程 1.d盤建立myvue檔案 2.命令進入myvue cmd d cd myvue 3.在目錄下建立乙個基於 webpack 模板的新專案 vue init webpack my vue project4.安裝專案依賴 cd 上一步建立的my vue pr...