您当前的位置: 首页 >  mybatis

wespten

暂无认证

  • 1浏览

    0关注

    899博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Mybatis 传入CLOB,BLOB参数

wespten 发布时间:2018-08-20 00:33:01 ,浏览量:1

CLOB大文本存字符串

BLOB图片存字节数组

public class Student {

	private Integer id;
	private String name;
	private Integer age;
	private byte[] pic;
	private String remark;
}
	public int insertStudent(Student student);
	
		insert into t_student values(null,#{name},#{age},#{pic},#{remark});
	
	public void testInsertStudent(){
		logger.info("添加学生");
		Student student=new Student();
		student.setName("张三4");
		student.setAge(14);
		student.setRemark("很长的本文...");
		byte []pic=null;
		try{
			File file=new File("c://boy.jpg");
			InputStream inputStream=new FileInputStream(file);
			pic=new byte[inputStream.available()];
			inputStream.read(pic);
			inputStream.close();
		}catch(Exception e){
			e.printStackTrace();
		}
关注
打赏
1665965058
查看更多评论
立即登录/注册

微信扫码登录

0.0432s