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();
}