Symfony4中从已存在的数据库中生成Entity实体类

首先,在doctrine.yaml中配置好ORM的mappings。

如下:

doctrine:
    dbal:
        # configure these for your database server
        driver: 'pdo_mysql'
        server_version: '5.7'
        charset: utf8mb4
        default_table_options:
            charset: utf8mb4
            collate: utf8mb4_unicode_ci

        url: '%env(resolve:DATABASE_URL)%'
    orm:
        auto_generate_proxy_classes: '%kernel.debug%'
        naming_strategy: doctrine.orm.naming_strategy.underscore
        auto_mapping: true
        mappings:
            App:
                is_bundle: false
                type: yml
                dir: '%kernel.project_dir%/src/Entity'
                prefix: 'App\Entity'
                alias: App

 

其次,生成映射关系,也就是生成ORM。

Windows下执行:php bin/console doctrine:mapping:import App\Entity yml --path=src/doctrine

Linux      下执行:sudo php bin/console doctrine:mapping:import App\Entity yml --path=src/doctrine

 

最后,生成实体。

Windows下执行:php bin/console make:entity --regenerate App

Linux      下执行:sudo php bin/console make:entity --regenerate App

执行本语句时可能会提示有误,在此中情况下删除所有Entity下的所有文件,然后再次执行该语句。

参考资料:https://symfony.com/doc/current/doctrine/reverse_engineering.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值