当前位置: 首页 > 知识库问答 >
问题:

无法将控制器类移动到其他文件夹

白飞飙
2023-03-14

我从另一个开发人员那里接手了一个项目,所以我想把他的很多代码移到一个临时文件夹中,把事情弄清楚,如果我需要任何例子,我会回到他的东西上去。

因此,在将他的一个控制器类移动到临时文件夹“src/controller/temp”时,我得到以下消息:

自动加载程序需要在文件“/var/www/vhosts/mywebsite.com/vendor/composer/./../src/Controller/Temp/AccountSetupController.php”中定义类“App\Controller\Temp\AccountSetupController”。找到了文件,但类不在其中,类名称或命名空间可能在/var/www/vhosts/mywebsite中有输入错误。com/config/services。yaml(加载在resource“/var/www/vhosts/mywebsite.com/config/services.yaml”中)。

以下是控制器类(AcCountSetupController.php)的开头(我从 /src/Controller/CreatorDashboard移动到 /src/Controller/Temp):

namespace App\Controller\CreatorDashboard;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

/**
* @Route("/dashboard/setup")
*/
class AccountSetupController extends Controller
{

我的services.yaml文件是这样的:

# This file is the entry point to configure your own services.
# Files in the packages/ subdirectory configure your dependencies.

# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters:
    locale: 'en'
    aws.bucket: 'bucket'
    aws.compliance.bucket: 'bucket.compliance'
    num_notification_records: 5
    default_profile_photo_id: 1

services:
    # default configuration for services in *this* file
    _defaults:
        autowire: true      # Automatically injects dependencies in your services.
        autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
        public: false       # Allows optimizing the container by removing unused services; this also means
                            # fetching services directly from the container via $container->get() won't work.
                            # The best practice is to be explicit about your dependencies anyway.

    Liip\ImagineBundle\Service\FilterService: '@liip_imagine.service.filter'

    Imagine\Image\ImagineInterface: '@liip_imagine.gd'

    App\Repository\PhotoRepository:
        arguments: ['@liip_imagine.imagine_interface']


    # makes classes in src/ available to be used as services
    # this creates a service per class whose id is the fully-qualified class name
    App\:
        resource: '../src/*'
        exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}'

    # controllers are imported separately to make sure services can be injected
    # as action arguments even if you don't extend any base controller class
    App\Controller\:
        resource: '../src/Controller'
        tags: ['controller.service_arguments']

    # add more service definitions when explicit configuration is needed
    # please note that last definitions always *replace* previous ones

它以前工作得非常好,我所做的只是将控制器类移动到另一个位置。

为什么自动加载程序不能加载已移动的控制器类?

共有1个答案

杜祺
2023-03-14

Symfony文件和名称空间使用composer提供的PSR4自动加载标准。json

"autoload": {
    "psr-4": {
        "App\\": "src/"
    }
},

因此,文件和名称空间有着密切的关系。

  • 文件src/Controller/CreatorDashboard/AcCountSetupController.php将具有命名空间命名空间App\Controller\CreatorDashboard;
  • 当文件src/Controller/Temp/AcCountSetupController.php应该有一个命名空间命名空间App\Controller\Temp;

PSR-4 PHP-FIG的示例表对此进行了解释

+------------------------------+------------------+------------------------+-------------------------------------------+
| FULLY QUALIFIED CLASS NAME   | NAMESPACE PREFIX | BASE DIRECTORY         | RESULTING FILE PATH                       |
+------------------------------+------------------+------------------------+-------------------------------------------+
| \Acme\Log\Writer\File_Writer | Acme\Log\Writer  | ./acme-log-writer/lib/ | ./acme-log-writer/lib/File_Writer.php     |
+------------------------------+------------------+------------------------+-------------------------------------------+
| \Aura\Web\Response\Status    | Aura\Web         | /path/to/aura-web/src/ | /path/to/aura-web/src/Response/Status.php |
+------------------------------+------------------+------------------------+-------------------------------------------+
| \Symfony\Core\Request        | Symfony\Core     | ./vendor/Symfony/Core/ | ./vendor/Symfony/Core/Request.php         |
+------------------------------+------------------+------------------------+-------------------------------------------+
| \Zend\Acl                    | Zend             | /usr/includes/Zend/    | /usr/includes/Zend/Acl.php                |
+------------------------------+------------------+------------------------+-------------------------------------------+
 类似资料:
  • 我正在做一个项目,处理多个fxml和相应的控制器文件。我需要以某种方式从b.fxml的控制器访问定义在例如a.fxml中的fxml元素并使用它。 我不允许展示实际代码。但是,为此目的,我构建了一个简单的应用程序,其中包含两个FXML及其相应的控制器。 此应用程序具有带有ButtonController.java的Button.fxml和带有ProgressIndicator.fxml的Progre

  • 我有一个文件夹,其中有一个。dat文件和一个是。zip文件,我必须移动。将文件压缩到另一个目录 我有两个文件夹,一个是 请建议如何实现这一点,我现在所做的是。。。

  • 我需要允许我网站上的用户在上传后从服务器上删除他们的图像,如果他们不再需要它们。我以前在PHP中使用函数,但后来被告知这可能是相当危险的,也是一个安全问题。(下面以前的代码:) 相反,我现在想简单地将文件移动到不同的文件夹。这必须能够在他们第一次上传文件后很长时间内完成,这样他们就可以随时登录他们的帐户。如果我有存储用户图像的主文件夹: 然后在该文件夹中放置一个名为del的文件夹,该文件夹是放置不

  • 问题内容: 如何使用Java将所有文件从一个文件夹移动到另一文件夹?我正在使用此代码: 但它仅适用于一个特定文件。 谢谢!!! 问题答案: 如果对象指向文件夹,则可以遍历其内容

  • 问题内容: 在春季将请求转发到其他控制器的正确方法是什么? 所有的控制器都有Spring注入的依赖项,所以我不能只创建它们并自己调用它们,而是希望将请求属性传递给其他控制器。 问题答案: 尝试返回一个String,而该String为正向URL。

  • 问题内容: 如果他们不再需要我的网站上的用户,则在他们上载图像后,需要允许他们从服务器上删除它们的图像。我以前在PHP中使用该函数,但此后被告知这可能具有很高的风险和安全性。(下面的先前代码:) 相反,我现在只想将文件移动到其他文件夹中。他们必须先上传文件很长时间,然后才能登录帐户。如果我有存储用户图像的主文件夹: 然后在其中一个名为del的文件夹中放置不需要的图像: 是否有命令将文件移动到其他文