1
複合型で循環参照を扱い、私はSOAPサーバーを作成するBeSimple SoapBundleを使用していますが、私は次のコードとのトラブルを抱えている:BeSimple SoapBundle - 注釈:
namespace AppBundle\Entity;
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
/**
* @Soap\Alias("Item")
*/
class Item
{
/**
* @Soap\ComplexType("AppBundle\Entity\Item[]")
*/
protected $items;
/**
* @Soap\ComplexType("string")
*/
protected $name;
私が必要なものgetはcomplextypeアイテムのツリーですが、注釈を使用するときに循環参照エラーが発生します@Soap \ ComplexType( "AppBundle \ Entity \ Item []")。
私はこの状況にどのように対処できますか?