自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

wchenchaow的博客

一个菜鸟程序员的博客

  • 博客(5)
  • 收藏
  • 关注

原创 spring学习之jdbcTemplate

一、导入相应的jar包在pom.xml中添加jar包的依赖:<!-- https://mvnrepository.com/artifact/c3p0/c3p0 --> <dependency> <groupId>c3p0</groupId> <artifactId>c3p0</artifactId> &l...

2018-04-08 17:26:11 119

原创 spring学习之spring AOP的配置

一、使用注解方式在applicationContext.xml中配置:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xml...

2018-04-08 11:48:39 251

原创 Mybatis学习之CRUD操作

1、创建数据表CREATE TABLE `dept` ( `deptno` int(11) NOT NULL COMMENT '部门编号', `dname` varchar(30) NOT NULL COMMENT '部门名称', `loc` varchar(50) NOT NULL COMMENT '部门地址', PRIMARY KEY (`deptno`) ) ENGINE=I...

2018-04-04 15:26:33 158

原创 Mybatis学习之核心配置文件

核心配置文件:sqlMapConfig.xml<?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"> <con

2018-04-03 20:22:40 97

原创 Mybatis学习之MybatisUtil工具类

                String resource = "sqlMapConfig.xml"; InputStream inputStream = null; SqlSession sqlSession = null; try { inputStream = Resources.getResourceAsStream(resource); SqlSessionFactor...

2018-04-03 20:10:24 4609 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除