JAVA WEB基础-判断数据库是否有该数据

[亡魂溺海] 提交于 2019-12-03 14:22:09
@Query(value = "select * from brand where brand_name = :#{#brand.brandName} and id <> :#{#brand.id}",nativeQuery = true)
    List<Brand> findAllByBrandNameNotId(@Param("brand") Brand brand);
List<Brand> list = brandRepository.findAllByBrandNameNotId(brand);
        if (list.size()>0) {
            throw new StatusCodeException(StatusCode.FAILED.getCode(),"品牌名称重复!");
        }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!