摘要:
当无法找到默认图片时,onerror="javascript:this.src='images/defaultUpload.png';"容易导致死循环报错 阅读全文
摘要:
资料来源网址:http://www.cnblogs.com/hawell/p/SpringDataJpa.html Repository(几个常用的例子) service层几个例子 Controller层(主要是分页查询) 阅读全文
摘要:
并非通用, 根据自己实际情况来 不能删除前的dao方法 public void delete(CmsProjectNew bean); 可以删除后的dao方法 @Modifying @Query("delete CmsProjectNew bean where bean.id in (?1)") p 阅读全文
摘要:
@Query("delete CmsProjectMember bean where bean.cmsProjectNew.id in (?1)") public void deleteByProjectId(Collection<Integer> ids); 修改为: @Modifying @Qu 阅读全文
Associations marked as mappedBy must not define database mappings like @JoinTable or @JoinColumn【报错】
摘要:
自己的项目没有测通 可能是自己项目原因——因为自己项目中级联关系的类涉及太多 自己的项目【这样的配置报错】 @OneToMany(fetch=FetchType.LAZY,cascade = { CascadeType.REMOVE }, mappedBy="scProjectTecApply") 阅读全文