- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我已经在我的系统上安装了 Zf2 框架。
它的工作 Localhost 骨架 zend 应用程序示例页面。
当我在我的项目中插入新模块时出现错误:
Zend\ServiceManager\Exception\ServiceNotFoundException
Zend\Mvc\Controller\ControllerManager::createFromInvokable: failed retrieving "userscontrollerindex(alias: Users\Controller\Index)" via invokable class "Users\Controller\IndexController"; class does not exist
#0 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\ServiceManager\ServiceManager.php(637): Zend\ServiceManager\AbstractPluginManager->createFromInvokable('userscontroller...', 'Users\\Controlle...')
#1 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\ServiceManager\ServiceManager.php(593): Zend\ServiceManager\ServiceManager->doCreate('Users\\Controlle...', 'userscontroller...')
#2 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\ServiceManager\ServiceManager.php(525): Zend\ServiceManager\ServiceManager->create(Array)
#3 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\ServiceManager\AbstractPluginManager.php(103): Zend\ServiceManager\ServiceManager->get('Users\\Controlle...', false)
#4 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\Mvc\Controller\ControllerManager.php(137): Zend\ServiceManager\AbstractPluginManager->get('Users\\Controlle...', Array, false)
#5 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\Mvc\DispatchListener.php(96): Zend\Mvc\Controller\ControllerManager->get('Users\\Controlle...')
#6 [internal function]: Zend\Mvc\DispatchListener->onDispatch(Object(Zend\Mvc\MvcEvent))
#7 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\EventManager\EventManager.php(468): call_user_func(Array, Object(Zend\Mvc\MvcEvent))
#8 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\EventManager\EventManager.php(207): Zend\EventManager\EventManager->triggerListeners('dispatch', Object(Zend\Mvc\MvcEvent), Object(Closure))
#9 D:\xampp\htdocs\CommunicationApp\vendor\zendframework\zendframework\library\Zend\Mvc\Application.php(313): Zend\EventManager\EventManager->trigger('dispatch', Object(Zend\Mvc\MvcEvent), Object(Closure))
#10 D:\xampp\htdocs\CommunicationApp\public\index.php(17): Zend\Mvc\Application->run()
#11 {main}
这里附上我的代码:
模块.config.php
<?php
return array(
'controllers' => array(
'invokables' => array(
'Users\Controller\Index' =>
'Users\Controller\IndexController',
),
),
'router' => array(
'routes' => array(
'users' => array(
'type' => 'Literal',
'options' => array(
// Change this to something specific to your module
'route' => '/users',
'defaults' => array(
// Change this value to reflect the namespace in which
// the controllers for your module are found
'__NAMESPACE__' => 'Users\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
// This route is a sane default when developing a module;
// as you solidify the routes for your module, however,
// you may want to remove it and replace it with more
// specific routes.
'default' => array(
'type' => 'Segment',
'options' => array(
'route' =>
'/[:controller[/:action]]',
'constraints' => array(
'controller' =>
'[a-zA-Z][a-zA-Z0-9_-]*',
'action' =>
'[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'users' => __DIR__ . '/../view',
),
),
);
模块.php
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/ZendSkeletonModule for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Users;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\Mvc\ModuleRouteListener;
use Zend\Mvc\MvcEvent;
class Module implements AutoloaderProviderInterface
{
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
// if we're in a namespace deeper than one level we need to fix the \ in the path
__NAMESPACE__ => __DIR__ . '/src/' . str_replace('\\', '/' , __NAMESPACE__),
),
),
);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function onBootstrap(MvcEvent $e)
{
// You may not need to do this if you're doing it elsewhere in your
// application
$eventManager = $e->getApplication()->getEventManager();
$moduleRouteListener = new ModuleRouteListener();
$moduleRouteListener->attach($eventManager);
}
}
应用程序.config.php
<?php
return array(
// This should be an array of module namespaces used in the application.
'modules' => array(
'Application',
'Users',
),
// These are various options for the listeners attached to the ModuleManager
'module_listener_options' => array(
// This should be an array of paths in which modules reside.
// If a string key is provided, the listener will consider that a module
// namespace, the value of that key the specific path to that module's
// Module class.
'module_paths' => array(
'./module',
'./vendor',
),
// An array of paths from which to glob configuration files after
// modules are loaded. These effectively override configuration
// provided by modules themselves. Paths may use GLOB_BRACE notation.
'config_glob_paths' => array(
'config/autoload/{,*.}{global,local}.php',
),
// Whether or not to enable a configuration cache.
// If enabled, the merged configuration will be cached and used in
// subsequent requests.
//'config_cache_enabled' => $booleanValue,
// The key used to create the configuration cache file name.
//'config_cache_key' => $stringKey,
// Whether or not to enable a module class map cache.
// If enabled, creates a module class map cache which will be used
// by in future requests, to reduce the autoloading process.
//'module_map_cache_enabled' => $booleanValue,
// The key used to create the class map cache file name.
//'module_map_cache_key' => $stringKey,
// The path in which to cache merged configuration.
//'cache_dir' => $stringPath,
// Whether or not to enable modules dependency checking.
// Enabled by default, prevents usage of modules that depend on other modules
// that weren't loaded.
// 'check_dependencies' => true,
),
// Used to create an own service manager. May contain one or more child arrays.
//'service_listener_options' => array(
// array(
// 'service_manager' => $stringServiceManagerName,
// 'config_key' => $stringConfigKey,
// 'interface' => $stringOptionalInterface,
// 'method' => $stringRequiredMethodName,
// ),
// )
// Initial configuration with which to seed the ServiceManager.
// Should be compatible with Zend\ServiceManager\Config.
// 'service_manager' => array(),
);
当我在我的浏览器上运行时收到错误
An error occurred
An error occurred during execution; please try again later.
Additional information:
Zend\ServiceManager\Exception\ServiceNotFoundException
最佳答案
问题可能出在您的 autoload_classmap.php 文件中。尝试将文件编辑为
<?php
return array('Users\Controller\IndexController' => __DIR__ . '/Controller/IndexController.php',);
如果成功,您的 IndexController.php 文件可能位于默认目录之外。建议您将 'Users\Controller' 文件夹的内容移动到 'Users\src\Controller',然后将 autoload_classmap.php 文件编辑回
关于php - Zend 框架 2 中的 Zend\ServiceManager\Exception\ServiceNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28472051/
我正在尝试修改和复制一个自定义模块,我已经设置了所有数据库连接,但是在按如下方式查看我的模块时出现错误: Zend\ServiceManager\ServiceManager::get was una
我做了一个登录表单。我的 Controller 中总是出现此错误,它无法为此数据库获取或创建实例。我已经阅读了所有关于它的文档以及为什么会出现这个错误。我已尽一切努力解决此问题,但仍然无法正常工作。有
大家好! 我正在学习zf2,并尝试设置一个导航面板(基于:Zend Framework 2: Zend_Navigation),但计算机的答案仍然是: 发生错误执行过程中出现错误;请稍后再试。附加信息
我正在创建一个沙盒应用程序,并且已经使用 ServiceManagement 框架自动启动。然而,对于 Swift,ServiceManagement 框架已被弃用(自 Xcode 7 beta 3
我在构建 android 源代码时遇到以下错误,我在其中添加了使用 android.os.ServiceManager 的自定义应用程序。 cannot find symbol symbol : c
我正在尝试在我的实体类上使用 Service Manager,但我不知道最好的方法。 在 Controller 上这很容易,因为我们可以使用以下命令调用服务管理器: $this->getService
最近我从source.android.com(projects/platform/packages/apps/Browser.git/)下载了浏览器的src代码。如果我在 Eclipse 上将其作为构
我看了一个simulateKeyInput的demo, 部分代码如下: 最终 IWindowManager windowManager=IWindowManager.Stub。 asInterface
我正在尝试在 Zend Framework 2.3 中的 Controller 上运行测试。 我测试的 Action 是这样的: public function listAction() {
我正在尝试将我的 beta DI 代码转换为 ZF2 的发布版本。现在我一开始就崩溃了,似乎没有任何关于将东西注入(inject) Controller 的文档,这让我认为在 Controller 中
我正在学习 zf2,从网上阅读文档、教程等。现在我对 Zend\ServiceManager\ServiceManagerAwareInterface.php 感到困惑和 Zend\ServiceMa
我正在 Cocoa 中构建一个代理应用程序,需要在登录时启动。 我确实做了TIMSCHROEDER说。在 Debug模式下它是完美的。但是,由于我将应用程序存档并导出到 macOS 应用程序,我无法再
我对由 ServiceManager 注册而不是由 SystemServiceRegistry 注册的服务有疑问。 在SystemServiceRegistry 的评论中 /** * Manages
对于android8.1,SELinux权限更加严格。它只允许定义在 plat_service_contexts 中的服务注册到 ServiceManager,我们有一个供应商服务之前注册到 Serv
我正在使用 Xamarin.Android 开发 Android 应用程序。我必须访问 ServiceManager 才能检索特定的 IBinder。 ServiceManager 可由 Java 应
我正在使用aidl自动接听电话,代码如下: ITelephony.Stub.asInterface(ServiceManager.getService("phone")) .answerRin
我目前正在使用 ZF2 serviceManager,我试图弄清楚为什么 serviceManager 没有将 sm 注入(inject)到实现 ServiceLocatorAwareInterfac
我已经创建了系统应用程序。它有一个 aidl 文件和服务。我已经在服务方法 onStartCommand() 中实现了 aidl 接口(interface)和 addService。 mBinder
我在尝试使用 ZF2 的身份验证服务时遇到了一些问题。我必须遵循 Module.php getServiceConfig 函数: array( 'Auth\Model\Cus
第一个 ZF2 应用程序,到达那里,但我认为在依赖注入(inject)和 ServiceManager 方面仍然缺少一两个想法。 目前我在编写一个新的数据库网关类时遇到了一个特殊问题。我不会注入(in
我是一名优秀的程序员,十分优秀!