如何在 Eclipse 中激活 Faces 配置编辑器?
当我在 eclipse 中创建 JSF2.0 项目时,打开它的 faces-config.xml 文件总是会启动 faces 配置编辑器。但现在我有一个 Google AppEngine 项目,并且我已经手动添加了 JSF2(和 PrimeFaces)。当我打开 faces-config.xml 文件时,faces 配置编辑器不会启动,因此我只能通过 xml 源编辑此文件。
如何激活该项目的 Faces 配置编辑器?
When I make a JSF2.0 project in eclipse, the opening of it's faces-config.xml file always starts the faces configuration editor. But now I have a Google AppEngine project and I have added JSF2 (and PrimeFaces) manually. And when I open the faces-config.xml file, the faces configuration editor doesn't start so I can edit this file only through xml source.
How can I activate the Faces Configuration Editor for this project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目属性的Project Facets 部分中添加 JSF Facet。
Add the JSF facet in the Project Facets section of the project's properties.
这是实现此目的的一种方法,从以下位置获取 JBoss Tools 3.2.2 插件
(将链接粘贴到 eclipse 中,转到帮助 -> 安装新软件)这是 eclipse Helios 的链接,但您也可以用于任何其他 eclipse (包括Indigo)
您需要从包中选择 Web 和 Java EE 开发
右键单击 war 文件夹内的 WEB-INF 文件夹,然后选择 New - > Faces Config 并输入文件名 faces-config
就是这样(刚才检查了我自己)
Here's a way to achieve this, get the JBoss Tools 3.2.2 plugin from
(paste the link in eclipse, go to Help -> Install New Software) this is the link to for eclipse Helios , but you can for any other eclipse too (including Indigo)
all you need to select from the package is Web and Java EE Development
Than right click your WEB-INF folder which inside the war folder, then select New - > Faces Config and type the name of file as faces-config
That's it (checked myself just now)