同時把我的應用程序在生產中,我不得不通過FTP傳輸JMS串行器,因爲我無法在生產服務器上使用作曲家。Symfony - ClassNotFoundException在AppKernel.php
它的工作,我看到它在供應商。
我AppKernel是一樣的地方(如果它的工作原理,在生產和開發環境測試):
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
new Hager\TransformationBundle\TransformationBundle(),
new JMS\SerializerBundle\JMSSerializerBundle()
);
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
}
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
}
}
,但我收到的AppKernel一個很奇怪的
的ClassNotFoundException。 php第22行: 試圖從名稱空間「JMS \ SerializerBundle」加載類「JMSSerializerBundle」。 你忘記了另一個命名空間的「使用」語句嗎?
由於控制檯在生產服務器上不可用,我做了rm -RF /app/cache/*
但仍然出現錯誤。
幫助非常好。
看起來類加載器沒有加載JMSSerializer類。您是否在生產環境中更新了composer.json和composer.lock文件,或者您只是將jms序列化程序上傳到供應商文件夾? – viktor77
他說他不能在生產服務器上使用作曲家 –
我不能在生產中使用作曲家,所以是的,我只是ftp上傳它在供應商文件夾。 –