如何在eclipse中跟随xhtml到Bean类?

问题描述 投票:0回答:3

我正在使用 Eclipse-Juno 并尝试遵循从

JSF
xhtml
Bean class
代码,但我无法在我的工作空间中获得该功能。

例如:

当我在标题中使用Ctrl+鼠标指针时,它会给出建议的链接。

enter image description here

但是,当我想出

xhtml
代码时,我无法获得 Bean 类的链接。

例如:

这里我使用相同的选项,Ctrl+鼠标指针。它没有给关联的bean任何建议。

enter image description here

我如何得到这个?我是否需要更改 eclipse 中的任何设置?

java eclipse jsf primefaces eclipse-juno
3个回答
2
投票

要清除eclipse中的这种行为,我们必须正确设置配置。

Rami
给出的答案偏向于这个问题。

当我们下载

Eclipse
JEE
时,
Web Tools Platform plugin
将作为内置插件下载。运行
Application
/
Project
时,您必须在
Java Server Faces
中配置
Project Facets

在 Eclipse 中设置配置的链接是,

(Right click project) ->  Properties ->(Search for Facets) select Project Facets -> (Tick mark) Java Server Faces -> (click) Apply -> (click) ok

更多详情请参阅下图..

enter image description here

现在您可以获得

Associated Bean Class
表格
xhtml
的链接,并且您还将获得默认提案。


1
投票

Eclipse Web 工具平台提供了此功能

http://www.eclipse.org/webtools/releases/3.0.0/newandnoteworthy/jsf.php

WPE 的“源”选项卡中的超链接支持

网页编辑器 (WPE) 的“源”选项卡支持超链接 托管 Bean 变量、托管 Bean 属性和托管 Bean 方法 在标签属性的表达式语言(EL)中引用。用户 可以(Ctrl+单击)超链接导航到源 托管 Bean。

enter image description here


0
投票

如果没有 ManagedBean,可以使用 Component 代替吗?

© www.soinside.com 2019 - 2024. All rights reserved.