java web - spring data jpa
文章平均质量分 62
Zonson9999
但行好事,莫问前程
展开
-
Error executing DDL
o.h.t.s.i.ExceptionHandlerLoggedImpl : GenerationTarget encountered exception accepting command : Error executing DDL "create table xxxSPRING BOOT JPA 自动创建表失败。报错如上。我遇到这个问题,是因为数据库创建者有一些字段命名不规范,使用了一些特殊的关键字。比如 type internal等等解决方法:1修改字段。...原创 2021-08-08 16:25:36 · 2949 阅读 · 0 评论 -
HikariPool-1 - Exception during pool initialization. Could not create connection
HikariPool-1 - Exception during pool initialization. Could not create connectionCaused by: java.lang.NullPointerException: null at com.mysql.jdbc.ConnectionImpl.getServerCharset问题:数据库8....原创 2020-03-08 19:29:46 · 1200 阅读 · 0 评论 -
mysql unknown column 'xxx' in field list
实体类里中的字段名和数据库中实际的字段名不相符。报这个错。@Column(name = "google_iap_app_name")public String getGoogleIapAppName() { return googleIapAppName;}数据库中定义的是goole_iap_app_name数据库少写了一g修改:alter tabl...原创 2019-10-12 15:24:00 · 929 阅读 · 0 评论 -
【转】nativeQuery = true的作用
所谓本地查询,就是使用原生的sql语句(根据数据库的不同,在sql的语法或结构方面可能有所区别)进行查询数据库的操作。原文:https://www.cnblogs.com/zj0208/p/6008627.html参考:https://blog.csdn.net/myme95/article/details/84143341...转载 2019-04-10 16:39:31 · 6453 阅读 · 0 评论 -
对返回前端的数据进行分页
分页需要前端请求要显示的页码pageIndex(通常从1开始),和一页显示的数据量pageSize。分页可以让JPA来做,也查到所有数据,自己对数据集合(比如LIST)做分页。请求参数VO类JPA:先封装一个page类:public class PageParam { private int page; private int pageSize; ...原创 2018-11-30 18:04:01 · 2806 阅读 · 0 评论 -
一个完整的spring data jpa 的实例
创建项目用 spring tool suite 创建一个 spring starter project :(笔者使用的 STS 版本为 4-4.0.1.RELEASE)依赖包中选择 web 及JPApom.xml 额外增加 mysql 相关依赖,最终的 pom.xml 依赖: <dependencies> <dependency> ...原创 2019-05-17 15:41:28 · 3491 阅读 · 0 评论 -
org.springframework.dao.InvalidDataAccessResourceUsageException: could not extract ResultSet;
org.springframework.dao.InvalidDataAccessResourceUsageException: could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSetS...原创 2019-05-06 15:25:14 · 644 阅读 · 0 评论 -
jpa like escape
escape 的说明http://www.orafaq.com/wiki/SQL_FAQ#How_does_one_escape_special_characters_when_writing_SQL_queries.3FEscape wildcard charactersThe LIKE keyword allows for string searches. The '_' wild...原创 2019-03-01 17:01:56 · 2806 阅读 · 0 评论 -
jpa 常用查询方法记录
以这张表为例:+-------------+--------------+------+-----+-------------------+----------------+| Field | Type | Null | Key | Default | Extra |+-------------+-------------...原创 2018-12-07 14:43:25 · 18812 阅读 · 7 评论 -
【转】@Query注解的用法(Spring Data JPA)
@Query注解的用法(Spring Data JPA)原文:https://www.cnblogs.com/zj0208/p/6008627.html参考文章:http://www.tuicool.com/articles/jQJBNv1. 一个使用@Query注解的简单例子@Query(value = "select name,author,price from Book b...转载 2018-12-04 20:32:19 · 223 阅读 · 0 评论 -
sql in 用法的一个错误记录
@Query(value = "select * from user_permission where user_id in (?1) and status = 'valid'", nativeQuery = true) List<UserPermission> findByUserIdList(List<Integer> userId);当userId长度为0时,J...原创 2018-12-04 15:06:40 · 435 阅读 · 0 评论 -
jpa save 报错,提示 xx.hibernate_sequence' doesn't exist
Solution 1:Put the string below in .application.propertiesspring.jpa.properties.hibernate.id.new_generator_mappings=falseSolution 2:You can put the string below above your primary key:@Ge...原创 2018-10-17 11:32:33 · 896 阅读 · 0 评论