1

我创建了一个非常简单的登录表单,用户在其中输入用户名和密码,它会检查存储在支持 bean 中的值,如果匹配,它会给你一条欢迎消息。

这工作正常,但是我想添加数据库的功能,以允许更多的用户和更好的安全性。

我使用内置的 netbeans wizzard 创建了一个连接到数据库 (derby) 的简单 Web 应用程序,如下所示:http ://www.youtube.com/watch?v=tql4COiN5T0

我能够从数据库中检索数据,编辑它查看它并销毁它,大部分功能将在最后被删除。但是,我想知道的是,我怎样才能不去支持 bean 搜索 derby 数据库中的正确值呢?

这是我当前的 facelet 页面:

    <h:form>
        <h:panelGrid columns="2">
            <h:outputText value="Name"></h:outputText>
            <h:inputText value="#{loginTest.username}"></h:inputText>
            <h:outputText value="Password"></h:outputText>
            <h:inputSecret value="#{loginTest.password}"></h:inputSecret>
        </h:panelGrid>
        <h:commandButton value="Login" action="second"></h:commandButton>
    </h:form>

这是一个页面,我可以在其中检索数据库中的所有用户:

<h:dataTable value="#{logindetailsController.items}" var="item" border="0" cellpadding="2" cellspacing="0" rowClasses="jsfcrud_odd_row,jsfcrud_even_row" rules="all" style="border:solid 1px">
                        <h:column>
                            <f:facet name="header">
                                <h:outputText value="#{bundle.ListLogindetailsTitle_id}"/>
                            </f:facet>
                            <h:outputText value="#{item.id}"/>
                        </h:column>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText value="#{bundle.ListLogindetailsTitle_username}"/>
                            </f:facet>
                            <h:outputText value="#{item.username}"/>
                        </h:column>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText value="#{bundle.ListLogindetailsTitle_password}"/>
                            </f:facet>
                            <h:outputText value="#{item.password}"/>
                        </h:column>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText value="&nbsp;"/>
                            </f:facet>
                            <h:commandLink action="#{logindetailsController.prepareView}" value="#{bundle.ListLogindetailsViewLink}"/>
                            <h:outputText value=" "/>
                            <h:commandLink action="#{logindetailsController.prepareEdit}" value="#{bundle.ListLogindetailsEditLink}"/>
                            <h:outputText value=" "/>
                            <h:commandLink action="#{logindetailsController.destroy}" value="#{bundle.ListLogindetailsDestroyLink}"/>
                        </h:column>
                    </h:dataTable>

我有一个支持 bean,我可以在其中检索所有用户名和密码。我将如何在这个 bean 中搜索正确的用户名和密码?

这是实体:

@Entity
@Table(name = "LOGINDETAILS")
@XmlRootElement
@NamedQueries({
    @NamedQuery(name = "Logindetails.findAll", query = "SELECT l FROM Logindetails l"),
    @NamedQuery(name = "Logindetails.findById", query = "SELECT l FROM Logindetails l WHERE l.id = :id"),
    @NamedQuery(name = "Logindetails.findByUsername", query = "SELECT l FROM Logindetails l WHERE l.username = :username"),
    @NamedQuery(name = "Logindetails.findByPassword", query = "SELECT l FROM Logindetails l WHERE l.password = :password")})
public class Logindetails implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @Basic(optional = false)
    @NotNull
    @Column(name = "ID")
    private Short id;
    @Size(max = 20)
    @Column(name = "USERNAME")
    private String username;
    @Size(max = 20)
    @Column(name = "PASSWORD")
    private String password;

// getters and setters 
4

1 回答 1

0

如果我很好理解你,你应该在适当的托管 bean 中实例化实体,以便在这样的视图中使用它:

<h:form>
    ...
        <h:inputText value="#{loginTest.logindet.username}"></h:inputText>
    ...
        <h:inputSecret value="#{loginTest.logindet.password}"></h:inputSecret>

    <h:commandButton value="Login" action="second"></h:commandButton>
</h:form>

和 :

@ManagedBean
@SessionScoped
public class LoginTest implements Serializable {

    public Logindetails logindet;


    public LoginTest(){}

    public String login(){
        // login process
    }
 }
于 2013-11-07T13:26:31.603 回答