SpringBoot之jpa基本操作加图片上传显示功能

SpringBoot之jpa基本操作加图片上传显示功能

      • springboot之jpa支持
      • Springboot+bootstrap界面版之增删改查及图片上传

springboot之jpa支持

新建项目
SpringBoot之jpa基本操作加图片上传显示功能_第1张图片
SpringBoot之jpa基本操作加图片上传显示功能_第2张图片

SpringBoot之jpa基本操作加图片上传显示功能_第3张图片
SpringBoot之jpa基本操作加图片上传显示功能_第4张图片
导入pom依赖


    org.springframework.boot
     spring-boot-starter-data-jpa
 

application.yml文件配置


server:
  servlet:
    context-path: /springboot
  port: 80

spring:
  jpa:
    hibernate:
      ddl-auto: update
    show-sql: true
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/t243?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
    username: root
    password: 123
    druid:
      initial-size: 5
      min-idle: 5
      max-active: 20
      max-wait: 60000
      time-between-eviction-runs-millis: 60000
      min-evictable-idle-time-millis: 30000
      validation-query: SELECT 1 FROM DUAL
      test-while-idle: true
      test-on-borrow: true
      test-on-return: false
      pool-prepared-statements: true
      max-pool-prepared-statement-per-connection-size: 20
      filter:
        stat:
          merge-sql: true
          slow-sql-millis: 5000
      web-stat-filter:
        enabled: true
        url-pattern: /*
        exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*"
        session-stat-enable: true
        session-stat-max-count: 100
      stat-view-servlet:
        enabled: true
        url-pattern: /druid/*
        reset-enable: true
        login-username: admin
        login-password: admin
        allow: 127.0.0.1

Entity包Book.java

package com.tuzi.springboot03.entity;

import lombok.Data;

import javax.persistence.*;


@Data
@Table(name = "t_springboot_book_2020")
@Entity
public class Book {
    @Id                //id主键标识
    @GeneratedValue   //设置自增长
    private Integer bid;
    @Column(length = 100)  //设置字段长度
    private String bname;
    @Column
    private float price;

}


Springboot03Application加上注解
@EnableTransactionManagement

package com.tuzi.springboot03;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;

@EnableTransactionManagement
@SpringBootApplication
public class Springboot03Application {

    public static void main(String[] args) {
        SpringApplication.run(Springboot03Application.class, args);
    }

}

运行Springboot03Application
在这里插入图片描述
SpringBoot之jpa基本操作加图片上传显示功能_第5张图片
添加工具类
在这里插入图片描述
PageBean

package com.tuzi.springboot03.util;

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

/**
 * 分页工具类
 *
 */
public class PageBean {

	private int page = 1;// 页码

	private int rows = 10;// 页大小

	private int total = 0;// 总记录数

	private boolean pagination = true;// 是否分页
	
//	保存上次查询的参数
	private Map paramMap;
//	保存上次查询的url
	private String url;
	
	public void setRequest(HttpServletRequest request) {
		String page = request.getParameter("page");
		String rows = request.getParameter("limit");
		String pagination = request.getParameter("pagination");
		this.setPage(page);
		this.setRows(rows);
		this.setPagination(pagination);
		this.setUrl(request.getRequestURL().toString());
		this.setParamMap(request.getParameterMap());
	}

	public PageBean() {
		super();
	}

	public Map getParamMap() {
		return paramMap;
	}

	public void setParamMap(Map paramMap) {
		this.paramMap = paramMap;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	public int getPage() {
		return page;
	}

	public void setPage(int page) {
		this.page = page;
	}
	
	public void setPage(String page) {
		if(StringUtils.isNotBlank(page)) {
			this.page = Integer.parseInt(page);
		}
	}

	public int getRows() {
		return rows;
	}

	public void setRows(String rows) {
		if(StringUtils.isNotBlank(rows)) {
			this.rows = Integer.parseInt(rows);
		}
	}

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

	public void setTotal(String total) {
		if(StringUtils.isNotBlank(total)) {
			this.total = Integer.parseInt(total);
		}
	}

	public boolean isPagination() {
		return pagination;
	}

	public void setPagination(boolean pagination) {
		this.pagination = pagination;
	}
	
	public void setPagination(String pagination) {
		if(StringUtils.isNotBlank(pagination) && "false".equals(pagination)) {
			this.pagination = Boolean.parseBoolean(pagination);
		}
	}
	
	/**
	 * 最大页
	 * @return
	 */
	public int getMaxPage() {
		int max = this.total/this.rows;
		if(this.total % this.rows !=0) {
			max ++ ;
		}
		return max;
	}
	
	/**
	 * 下一页
	 * @return
	 */
	public int getNextPage() {
		int nextPage = this.page + 1;
		if(nextPage > this.getMaxPage()) {
			nextPage = this.getMaxPage();
		}
		return nextPage;
	}
	
	/**
	 * 上一页
	 * @return
	 */
	public int getPreviousPage() {
		int previousPage = this.page -1;
		if(previousPage < 1) {
			previousPage = 1;
		}
		return previousPage;
	}
		

	/**
	 * 获得起始记录的下标
	 * 
	 * @return
	 */
	public int getStartIndex() {
		return (this.page - 1) * this.rows;
	}

	@Override
	public String toString() {
		return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination + "]";
	}

}

PageUtil

package com.tuzi.springboot03.util;
import java.util.Map;
import java.util.Set;

public class PageUtil {
    public static String createPageCode(PageBean pageBean) {
        StringBuffer sb = new StringBuffer();
        /*
         * 拼接向后台提交数据的form表单
         * 	注意:拼接的form表单中的page参数是变化的,所以不需要保留上一次请求的值
         */
        sb.append("
"); sb.append(""); Map parameterMap = pageBean.getParamMap(); if(parameterMap != null && parameterMap.size() > 0) { Set> entrySet = parameterMap.entrySet(); for (Map.Entry entry : entrySet) { if(!"page".equals(entry.getKey())) { String[] values = entry.getValue(); for (String val : values) { sb.append(""); } } } } sb.append(""); if(pageBean.getTotal()==0){ return "未查询到数据"; }else{ sb.append("
  • 首页
  • "); if(pageBean.getPage()>1){ sb.append("
  • 上一页
  • "); }else{ sb.append("
  • 上一页
  • "); } for(int i=pageBean.getPage()-1;i<=pageBean.getPage()+1;i++){ if(i<1||i>pageBean.getMaxPage()){ continue; } if(i==pageBean.getPage()){ sb.append("
  • "+i+"
  • "); }else{ sb.append("
  • "+i+"
  • "); } } if(pageBean.getPage()下一页"); }else{ sb.append("
  • 下一页
  • "); } sb.append("
  • 尾页
  • "); } /* * 给分页条添加与后台交互的js代码 */ sb.append(""); return sb.toString(); } }

    StringUtils

    package com.tuzi.springboot03.util;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Set;
    
    public class StringUtils {
    	// 私有的构造方法,保护此类不能在外部实例化
    	private StringUtils() {
    	}
    
    	/**
    	 * 如果字符串等于null或去空格后等于"",则返回true,否则返回false
    	 * 
    	 * @param s
    	 * @return
    	 */
    	public static boolean isBlank(String s) {
    		boolean b = false;
    		if (null == s || s.trim().equals("")) {
    			b = true;
    		}
    		return b;
    	}
    	
    	/**
    	 * 如果字符串不等于null或去空格后不等于"",则返回true,否则返回false
    	 * 
    	 * @param s
    	 * @return
    	 */
    	public static boolean isNotBlank(String s) {
    		return !isBlank(s);
    	}
    
    	/**
    	 * set集合转string
    	 * @param hasPerms
    	 * @return
    	 */
    	public static String SetToString(Set hasPerms){
    		return  Arrays.toString(hasPerms.toArray()).replaceAll(" ", "").replace("[", "").replace("]", "");
    	}
    
    	/**
    	 * 转换成模糊查询所需参数
    	 * @param before
    	 * @return
    	 */
    	public static String toLikeStr(String before){
    		return isBlank(before) ? null : "%"+before+"%";
    	}
    
    	/**
    	 *	将图片的服务器访问地址转换为真实存放地址
    	 * @param imgpath	图片访问地址(http://localhost:8080/uploadImage/2019/01/26/20190126000000.jpg)
    	 * @param serverDir	uploadImage
    	 * @param realDir	E:/temp/
    	 * @return
    	 */
    	public static String serverPath2realPath(String imgpath, String serverDir, String realDir) {
    		imgpath = imgpath.substring(imgpath.indexOf(serverDir));
    		return imgpath.replace(serverDir,realDir);
    	}
    
    	/**
    	 * 过滤掉集合里的空格
    	 * @param list
    	 * @return
    	 */
    	public static List filterWhite(List list){
    		List resultList=new ArrayList();
    		for(String l:list){
    			if(isNotBlank(l)){
    				resultList.add(l);
    			}
    		}
    		return resultList;
    	}
    
    	/**
    	 * 从html中提取纯文本
    	 * @param strHtml
    	 * @return
    	 */
    	public static String html2Text(String strHtml) {
    		String txtcontent = strHtml.replaceAll("]+>", ""); //剔出的标签
    		txtcontent = txtcontent.replaceAll("\\s*|\t|\r|\n", "");//去除字符串中的空格,回车,换行符,制表符
    		return txtcontent;
    	}
    
    	public static void main(String[] args) {
    	}
    }
    
    

    jpa值增删改查

    新建文件repository,在这个文件下创建BookRepository
    只要继承JpaRepository,通常所用的增删查改方法都有
    第一个参数:操作的实体类
    第二个参数:实体类对应数据表的主键

    package com.tuzi.springboot03.repository;
    
    import com.tuzi.springboot03.entity.Book;
    import org.springframework.data.jpa.repository.JpaRepository;
    import org.springframework.stereotype.Repository;
    
    @Repository
    public interface BookRepository extends JpaRepository {
    }
    
    

    controller层BookController

    package com.tuzi.springboot03.controller;
    
    import com.tuzi.springboot03.entity.Book;
    import com.tuzi.springboot03.repository.BookRepository;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import java.util.List;
    
    @RestController
    @RequestMapping("/book")
    public class BookController {
    
        @Autowired
        private BookRepository jpaDao;
    
        @RequestMapping("/add")
        public String add(Book book){
            jpaDao.save(book);
            return "success";
        }
    
        @RequestMapping("/edit")
        public String edit(Book book){
            jpaDao.save(book);
            return "success";
        }
    
        @RequestMapping("/del")
        public String del(Book book){
            jpaDao.delete(book);
            return "success";
        }
    
        @RequestMapping("/getOne")
        public Book getOne(Integer bid){
    //        会出现懒加载问题:org.hibernate.LazyInitializationException: could not initialize proxy - no Session
    //        return jpaDao.getOne(bid);
            return (Book)jpaDao.findById(bid).get();
        }
    
        @RequestMapping("/getAll")
        public List getAll(){
            return jpaDao.findAll();
        }
    }
    
    

    新增
    SpringBoot之jpa基本操作加图片上传显示功能_第6张图片
    修改
    SpringBoot之jpa基本操作加图片上传显示功能_第7张图片
    删除
    SpringBoot之jpa基本操作加图片上传显示功能_第8张图片

    Springboot+bootstrap界面版之增删改查及图片上传

    上传文件映射配置类MyWebAppConfigurer.java

    package com.tuzi.springboot03.config;
    
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
    import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
    
    @Configuration
    public class MyWebAppConfigurer extends WebMvcConfigurationSupport {
        @Override
        protected void addResourceHandlers(ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
            registry.addResourceHandler("/uploadImages/**").addResourceLocations("file:D:/image/");
            super.addResourceHandlers(registry);
        }
    }
    
    

    实体类

    package com.tuzi.springboot03.entity;
    
    import lombok.ToString;
    
    import javax.persistence.*;
    
    @Entity
    @Table(name = "t_springboot_teacher")
    @ToString
    public class Teacher {
        @Id
        @GeneratedValue
        private Integer tid;
        @Column(length = 16)
        private String tname;
        @Column(length = 4)
        private String sex;
        @Column(length = 100)
        private String description;
        @Column(length = 200)
        private String imagePath;
    
        public Integer getTid() {
            return tid;
        }
    
        public void setTid(Integer tid) {
            this.tid = tid;
        }
    
        public String getTname() {
            return tname;
        }
    
        public void setTname(String tname) {
            this.tname = tname;
        }
    
        public String getSex() {
            return sex;
        }
    
        public void setSex(String sex) {
            this.sex = sex;
        }
    
        public String getDescription() {
            return description;
        }
    
        public void setDescription(String description) {
            this.description = description;
        }
    
        public String getImagePath() {
            return imagePath;
        }
    
        public void setImagePath(String imagePath) {
            this.imagePath = imagePath;
        }
    }
    
    

    TeacherDao继承JpaRepository

    package com.tuzi.springboot03.repository;
    
    import com.tuzi.springboot03.entity.Teacher;
    import org.springframework.data.jpa.repository.JpaRepository;
    import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
    
    public interface TeacherDao extends JpaRepository, JpaSpecificationExecutor {
    
    }
    
    

    service层

    package com.tuzi.springboot03.service;
    
    import com.tuzi.springboot03.entity.Teacher;
    import com.tuzi.springboot03.util.PageBean;
    import org.springframework.data.domain.Page;
    
    public interface TeacherService {
        public Teacher save(Teacher teacher);
        public void deleteById(Integer id);
        public Teacher findById(Integer id);
        public Page listPager(Teacher teacher, PageBean pageBean);
    }
    
    
    package com.tuzi.springboot03.service.Impl;
    
    import com.tuzi.springboot03.entity.Teacher;
    import com.tuzi.springboot03.repository.TeacherDao;
    import com.tuzi.springboot03.service.TeacherService;
    import com.tuzi.springboot03.util.PageBean;
    import com.tuzi.springboot03.util.StringUtils;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.data.domain.Page;
    import org.springframework.data.domain.PageRequest;
    import org.springframework.data.domain.Pageable;
    import org.springframework.data.jpa.domain.Specification;
    import org.springframework.stereotype.Service;
    
    import javax.persistence.criteria.CriteriaBuilder;
    import javax.persistence.criteria.CriteriaQuery;
    import javax.persistence.criteria.Predicate;
    import javax.persistence.criteria.Root;
    
    @Service
    public class TeacherServiceImpl implements TeacherService {
    
        @Autowired
        private TeacherDao teacherDao;
        @Override
        public Teacher save(Teacher teacher) {
            return teacherDao.save(teacher);
        }
    
        @Override
        public void deleteById(Integer id) {
            teacherDao.deleteById(id);
        }
    
        @Override
        public Teacher findById(Integer id) {
            return teacherDao.findById(id).get();
        }
    
        @Override
        public Page listPager(Teacher teacher, PageBean pageBean) {
    //        jpa的Pageable分页是从0页码开始
            Pageable pageable = PageRequest.of(pageBean.getPage()-1, pageBean.getRows());
            return teacherDao.findAll(new Specification() {
                @Override
                public Predicate toPredicate(Root root, CriteriaQuery criteriaQuery, CriteriaBuilder criteriaBuilder) {
                    Predicate predicate = criteriaBuilder.conjunction();
                    if(teacher != null){
                        if(StringUtils.isNotBlank(teacher.getTname())){
                            predicate.getExpressions().add(criteriaBuilder.like(root.get("tname"),"%"+teacher.getTname()+"%"));
                        }
                    }
                    return predicate;
                }
            },pageable);
        }
    }
    
    

    controller层调用

    package com.tuzi.springboot03.controller;
    
    import com.tuzi.springboot03.entity.Teacher;
    import com.tuzi.springboot03.service.TeacherService;
    import com.tuzi.springboot03.util.PageBean;
    import com.tuzi.springboot03.util.PageUtil;
    import com.tuzi.springboot03.util.StringUtils;
    import org.apache.commons.io.FileUtils;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.data.domain.Page;
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.multipart.MultipartFile;
    import org.springframework.web.servlet.ModelAndView;
    
    import javax.servlet.http.HttpServletRequest;
    import java.io.File;
    import java.io.IOException;
    
    @Controller
    @RequestMapping("/teacher")
    public class TeacherController {
        @Autowired
        private TeacherService teacherService;
    
        @RequestMapping("/listPager")
        public ModelAndView list(Teacher teacher, HttpServletRequest request){
            PageBean pageBean = new PageBean();
            pageBean.setRequest(request);
            ModelAndView modelAndView = new ModelAndView();
            Page teachers = teacherService.listPager(teacher, pageBean);
            modelAndView.addObject("teachers",teachers.getContent());
            pageBean.setTotal(teachers.getTotalElements()+"");
            modelAndView.addObject("pageCode", PageUtil.createPageCode(pageBean)/*.replaceAll("<","<").replaceAll(">:",">")*/);
            modelAndView.setViewName("list");
            return modelAndView;
        }
    
        @RequestMapping("/toEdit")
        public ModelAndView toEdit(Teacher teacher){
            ModelAndView modelAndView = new ModelAndView();
            modelAndView.setViewName("edit");
            modelAndView.addObject("sexArr",new String[]{"男","女"});
            if(!(teacher.getTid() == null || "".equals(teacher.getTid()))) {
                Teacher t = teacherService.findById(teacher.getTid());
                modelAndView.addObject("teacher", t);
            }
            return modelAndView;
        }
    
        @RequestMapping("/add")
        public String add(Teacher teacher, MultipartFile image){
            try {
                String diskPath = "D://image/"+image.getOriginalFilename();
                String serverPath = "/springboot/uploadImages/"+image.getOriginalFilename();
                if(StringUtils.isNotBlank(image.getOriginalFilename())){
                    FileUtils.copyInputStreamToFile(image.getInputStream(),new File(diskPath));
                    teacher.setImagePath(serverPath);
                }
                teacherService.save(teacher);
            } catch (IOException e) {
                e.printStackTrace();
            }
            return "redirect:/teacher/listPager";
        }
    
    
        @RequestMapping("/edit")
        public String edit(Teacher teacher, MultipartFile image){
            String diskPath = "D://image/"+image.getOriginalFilename();
            String serverPath = "/springboot/uploadImages/"+image.getOriginalFilename();
            if(StringUtils.isNotBlank(image.getOriginalFilename())){
                try {
                    FileUtils.copyInputStreamToFile(image.getInputStream(),new File(diskPath));
                    teacher.setImagePath(serverPath);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            teacherService.save(teacher);
            return "redirect:/teacher/listPager";
        }
    
        @RequestMapping("/del/{bid}")
        public String del(@PathVariable(value = "bid") Integer bid){
            teacherService.deleteById(bid);
            return "redirect:/teacher/listPager";
        }
    }
    
    

    list.html页面

    
    
    
    
        
        书籍列表
        
        
        
        
        
    
    
    
    书籍名称:
    新增
    ID 头像 姓名 性别 简介 操作
    删除 修改

    edit.html页面

    
    
    
    
        
        用户编辑界面
    
        
    
    
    
    

    教员名称:
    教员描述:
    单选回显

    引入bootstrap
    SpringBoot之jpa基本操作加图片上传显示功能_第9张图片
    测试结果
    新增界面
    SpringBoot之jpa基本操作加图片上传显示功能_第10张图片
    查询
    SpringBoot之jpa基本操作加图片上传显示功能_第11张图片
    修改
    SpringBoot之jpa基本操作加图片上传显示功能_第12张图片
    SpringBoot之jpa基本操作加图片上传显示功能到此结束,88

    你可能感兴趣的:(springboot,jpa)