无法提交提交按钮

时间:2016-10-25 02:11:45

标签: java eclipse hibernate phpmyadmin

我是java的新手,并试图学习如何将数据添加到数据库中。

我不能让我的提交按钮工作。我收到"目标无法访问"的错误。我正在使用hibernate和phpMyAdmin。 正如我所说,我是新手。如果我遗漏了所需的信息,请告诉我。 我应该为文本框创建私有String方法,而不是在提交按钮中调用类吗? 我很迷惑。 非常感谢你的帮助。

additem.xhtml                   

<h:body>
    <ui:composition template="template.xhtml">

        <ui:define name="content">
            <h1>Add a New Item</h1>


            <br />
            <h:form>
            <p:panel id="panel" header="Enter an Item" style="margin-bottom:20px;"> 
                <p:growl id="growl" showDetail="true" sticky="false" />
                <h:outputLabel value="Item Number" />Item Number: 
                <p:inputText value="#{LibraryItem.itemNumber}" />
                <br />
                <h:outputLabel value="Title" />Title: 
                <p:inputText value="#{LibraryItem.title}" />
                <br />
                <h:outputLabel for="type" value="Type">Item Type: 
                    <p:selectOneMenu value="#{libraryItem.type}" style="width:228px">
                        <f:selectItem itemValue="" itemLabel="Select One" />
                        <f:selectItem itemValue="book" itemLabel="Book" />
                        <f:selectItem itemValue="magazine" itemLabel="Magazine" />
                        <f:selectItem itemValue="movie" itemLabel="Movie" />
                        <f:selectItem itemValue="music" itemLabel="Music" />
                    </p:selectOneMenu>
                </h:outputLabel>
                <br />
                <h:outputLabel value="Status" />Status: 
                <p:inputText value="#{LibraryItem.status}" />
                <br />
                <p:commandButton value="Submit" actionListener="#{AddLibraryItem.addItem}" update="growl" />
                <br />
</p:panel>
            </h:form>
        </ui:define>
    </ui:composition>
</h:body>

</html>

AddLibraryItem.java

@Named
@ManagedBean
@Scope("request")
public class AddLibraryItem  {

    //no arg constructor 
    public AddLibraryItem(){

    }


    @Inject private LibraryItem libraryItem;
    @Inject private ILibraryService libraryService;


    public String addItem(){

        //return value
        String returnValue = "success";

        //assign values
        libraryItem.setStatus("CHECKED_IN");

        //add to library
        try {
        libraryService.add(libraryItem);

        displayMessage("Success","Item added");
        }catch (Exception e){
            displayMessage("Error", e.toString());
            return "fail";
        }
        return returnValue;
    }

    //Getters and Setters
    public LibraryItem getLibraryItem() {
        return libraryItem;
    }

    public void setLibraryItem(LibraryItem libraryItem) {
        this.libraryItem = libraryItem;
    }

    public ILibraryService getLibraryService() {
        return libraryService;
    }

    public void setLibraryService(ILibraryService libraryService) {
        this.libraryService = libraryService;
    }

    //method to display messages
    private void displayMessage(String title, String message){
        //get faces context
        FacesContext currentInstance = FacesContext.getCurrentInstance();
        //message to show
        FacesMessage fm = new FacesMessage(FacesMessage.SEVERITY_INFO, title, message);
        //display the message
        currentInstance.addMessage(null, fm);
    }

}

0 个答案:

没有答案