activeJDBC遇到的一些问题与解决方案

1.Caused by: org.postgresql.util.PSQLException: ERROR: column "fileName" of relation "file_uploads" does not exist
原因: postsql字段需要小写,把字段全部大写了。
解决方案: 把字段改为小写,多个单词用_连接,例如: fileName 改为 file_name

2.Caused by: org.postgresql.util.PSQLException: ERROR: column "id" does not exist
原因:创建表的时候,使用的是file_uuid作为主键
解决方案: 把 file_uuid 改为 id

3: 参考官方文档的创建记录的写法导致不能insert记录,官方文档语句如下:
Initialize from Map
This method of creation is useful for web applications if request parameters are posted from a form an available in a Map instance:
Map values = ... initialize map
Person p = new Person();
p.fromMap(values);

p.saveIt();
但是执行到 p.saveit();时候,返回值是false,并且不能创建新的记录,
解决方案: 把p.saveit(); 改为 p.insert();

你可能感兴趣的:(activeJDBC)