为什么使用mybatis generator时没有生成enableSelectByPrimaryKey

why did not generate enableSelectByPrimaryKey when using mybatis generator

当我使用这个命令生成mybatis xml文件时:

java -jar mybatis-generator-core-1.3.4.jar -configfile generatorConfig.xml -overwrite

一切正常,但最后我发现用户映射器结果文件没有生成 SelectByPrimaryKey 函数。这是我的生成文件配置的一部分:

<table tableName="users"
               enableCountByExample="true"
               enableUpdateByExample="true"
               enableDeleteByExample="true"
               enableSelectByExample="true"
               enableSelectByPrimaryKey="true"
               enableUpdateByPrimaryKey="true"
               selectByPrimaryKeyQueryId="true"
               selectByExampleQueryId="true">
            <generatedKey column="ID" sqlStatement="JDBC" identity="true" />
        </table>

我的数据库是 PostgreSQL 13。我应该怎么做才能修复它?这是我的用户 table DML:

CREATE TABLE public.users (
    id int8 NOT NULL GENERATED ALWAYS AS IDENTITY,
    nickname varchar NULL,
    avatar_url varchar NULL,
    phone varchar NOT NULL,
    updated_time int8 NOT NULL,
    created_time int8 NOT NULL,
    salt varchar NULL,
    pwd varchar NULL,
    sex int4 NULL,
    level_type varchar NULL,
    phone_region varchar NULL,
    country_code int4 NULL,
    user_status int4 NULL DEFAULT 1,
    last_login_time int8 NULL,
    first_login_time int8 NULL,
    app_id int4 NOT NULL,
    register_time int8 NULL,
    apple_iap_product_id varchar NULL,
    CONSTRAINT unique_phone UNIQUE (phone)
);

您发布的 DML 显示 table 没有主键。你有两个选择。

您可以通过将此添加到创建 table 语句来定义 table 中的主键:

create table public.users (
  ...
  primary key (id)
);

或者,如果你不想在数据库中定义主键,你可以使用MyBatis Generator中的“VirtualPrimaryKeyPlugin”。详情请看这里:https://mybatis.org/generator/reference/plugins.html