bootdo
海涛高软
这个作者很懒,什么都没留下…
展开
-
useGeneratedKeys=true 配合 keyProperty=userId 作用
useGeneratedKeys="true" keyProperty="userId" 目的是将一个对象保存成功后,将插入的这条主键id返回,并保存到对象中,供后续使用 <insert id="save" parameterType="com.bootdo.system.domain.UserDO" useGeneratedKeys="true" keyProperty="userId"> insert into sys_user ( `username`,...原创 2020-06-18 10:28:36 · 1900 阅读 · 0 评论 -
SpringBoot重写静态资源的路径(bootdo)
import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.Web..原创 2020-06-19 08:54:43 · 421 阅读 · 0 评论 -
bootdo框架介绍使用
原创 2020-06-17 16:25:51 · 1255 阅读 · 0 评论 -
java获取当前时间
/** * 获取现在时间 * * @return返回字符串格式 yyyy-MM-dd HH:mm:ss */ public String getStringDate() { Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateString = formatter.format(currentTim.原创 2020-08-01 16:24:43 · 123 阅读 · 0 评论 -
bootdo框架中部分截图
// 刪除某张图片 public void DeleteAlbumPic(Long id) { // 删除图片 AlbumDO do1 = albumDao.get(id); if (do1 != null) { File temp = new File(bootdoConfig.getUploadPath() + do1.getPicNew()); if (temp.exists()) { temp.delete(); } } }FR:徐海涛(hu..原创 2020-08-02 15:08:56 · 203 阅读 · 0 评论