Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse は、symfony2 ブログ チュートリアルから取ったルートを示しています。
エラーは正しくフラグ付けされていますか、それとも yml エディターを変更する必要がありますか?
_welcome: pattern: / defaults: { _controller: BloggerBlogBundle:Default:index }
これに関する私の記憶が正しければ、Symfony2 は、英数字以外の文字を含む値を引用符で囲む必要のないカスタム YAML パーサーを使用します。従来の YAML 仕様はそうです。_controller の値を引用符で囲んでみてください。Symfony を壊すことはなく、Eclipse を満足させるはずです
{ _controller: "BloggerBlogBundle:Default:index" }