安装

时间:2016-02-21 19:40:49

标签: symfony

在新的Symfony 3安装中遇到Easy Admin设置的最后阶段的问题,

在你的第一个后端" :为这些实体创建后端只需要在app / config / config.yml文件中添加以下配置:

# app/config/config.yml
easy_admin:
    entities:
        - AppBundle\Entity\Product
        - AppBundle\Entity\Category
        - AppBundle\Entity\User

当我这样做时,我收到错误:

  

[ReflectionException]类   AppBundle \ Entity \ Product不存在

以前安装的所有命令都没有错误,包括安装资产。

1 个答案:

答案 0 :(得分:1)

在EasyAdminBundle的文档中你有

Exception in thread "main" java.lang.NoClassDefFoundError: kotlin/IntIterator at TestReduceKt.main(TestReduce.kt:6) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144) Caused by: java.lang.ClassNotFoundException: kotlin.IntIterator at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 6 more

Let's suppose that your Symfony application defines three Doctrine ORM entities called Product, Category and User.部分,您需要列出已在您的应用实体中存在的内容。如果你没有 - 创建它。

文档:https://github.com/javiereguiluz/EasyAdminBundle/blob/master/Resources/doc/getting-started/2-first-backend.md