【问题标题】:How do I show the user a list of movies, let him select a movie and save the movie in a table?i [duplicate]如何向用户显示电影列表,让他选择电影并将电影保存在表格中?我 [重复]
【发布时间】:2020-08-22 20:32:26
【问题描述】:

我有一个小型网络应用程序,用户应该在其中预订电影。我创建了 JSF 页面,并以此方式显示数据库中可用的电影列表:

<ui:composition template="/template.xhtml">
    <ui:define name="title">
        <h:outputText value="#{bundleMovie.ListMovieTitle}"></h:outputText>
    </ui:define>
    <ui:define name="body">
        <h:form styleClass="jsfcrud_list_form">
            <h:panelGroup id="messagePanel" layout="block">
                <h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/>
            </h:panelGroup>
            <h:outputText escape="false" value="#{bundleMovie.ListMovieEmpty}" rendered="#{movieController.items.rowCount == 0}"/>
            <h:panelGroup rendered="#{movieController.items.rowCount > 0}">
                <h:outputText value="#{movieController.pagination.pageFirstItem + 1}..#{movieController.pagination.pageLastItem + 1}/#{movieController.pagination.itemsCount}"/>&nbsp;
                <h:commandLink action="#{movieController.previous}" value="#{bundleMovie.Previous} #{movieController.pagination.pageSize}" rendered="#{movieController.pagination.hasPreviousPage}"/>&nbsp;
                <h:commandLink action="#{movieController.next}" value="#{bundleMovie.Next} #{movieController.pagination.pageSize}" rendered="#{movieController.pagination.hasNextPage}"/>&nbsp;
                <h:dataTable value="#{movieController.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="#{bundleMovie.ListMovieTitle_movieId}"/>
                        </f:facet>
                        <h:outputText value="#{item.movieId}"/>
                    </h:column>
                    <h:column>
                        <f:facet name="header">
                            <h:outputText value="#{bundleMovie.ListMovieTitle_movieName}"/>
                        </f:facet>
                        <h:outputText value="#{item.movieName}"/>
                    </h:column>
                    <h:column>
                        <f:facet name="header">
                            <h:outputText value="#{bundleMovie.ListMovieTitle_movieGenre}"/>
                        </f:facet>
                        <h:outputText value="#{item.movieGenre}"/>
                    </h:column>
                    <h:column>
                        <f:facet name="header">
                            <h:outputText value="#{bundleMovie.ListMovieTitle_movieRating}"/>
                        </f:facet>
                        <h:outputText value="#{item.movieRating}"/>
                    </h:column>
                    <h:column>
                        <f:facet name="header">
                            <h:outputText value="#{bundleMovie.ListMovieTitle_movieDate}"/>
                        </f:facet>
                        <h:outputText value="#{item.movieDate}"/>
                    </h:column>
                    <h:column>
                        <f:facet name="header">
                            <h:outputText value="&nbsp;"/>
                        </f:facet>
                        <h:commandLink action="#{movieController.bookAMovie(movie)}" value="Book" />
                    </h:column>
                </h:dataTable>
            </h:panelGroup>
            <br />
           <h:link outcome="/faces/adminIndex.jsp" value="Return to home page"/>
            <br />
            <br />
        </h:form>
    </ui:define>
</ui:composition>

如您所见,方法&lt;h:commandLink action="#{movieController.bookAMovie(movie)}" value="Book" /&gt; 应该将用户选择保存在新表中,该表为bookedmovie,而表中的数据显示给用户movie

方法是:

public int bookAMovie(Movie movie) throws ClassNotFoundException {
    String INSERT_USERS_SQL = "INSERT INTO bookedmovie"
            + "  (bookedmoviename, bookedmoviegenre, bookedmovierating) VALUES "
            + " (?, ?, ?);";

    int result = 0;

    Class.forName("com.mysql.jdbc.Driver");

    try (Connection connection = DriverManager
            .getConnection("jdbc:mysql://localhost:3306/cs230projekat?useSSL=false", "root", "");
            // Step 2:Create a statement using connection object
            PreparedStatement preparedStatement = connection.prepareStatement(INSERT_USERS_SQL)) {

        preparedStatement.setString(1, movie.getMovieName());
        preparedStatement.setString(2, movie.getMovieGenre());
        preparedStatement.setDouble(3, movie.getMovieRating());

        System.out.println(preparedStatement);
        // Step 3: Execute the query or update query
        result = preparedStatement.executeUpdate();

    } catch (SQLException e) {
        // process sql exception
        printSQLException(e);
    }
    return result;
}

我不知道如何解决这个问题。不一定要这样,如果有人能以任何方式提供帮助,它适合我。只是向用户展示了数据库中的电影,用户可以选择一部电影,并且他的选择存储在一个新表中。

【问题讨论】:

标签: java jsf


【解决方案1】:

关于 Java 代码,以下代码运行良好。 我可以运行它。

请确保您在项目中添加了适当的 MySQL 库并确保 UserName/Password 应该是正确的。现在您提供了空密码。

因为您没有提供任何错误堆栈。我无法直接对此发表评论。

    class Sample3 {
    public static void main(String[] args) throws ClassNotFoundException {
        bookAMovie(Movie.builder().movieGenre("Comic").movieRating(8).movieName("Movie1").build());
    }

    public static int bookAMovie(Movie movie) throws ClassNotFoundException {
        String INSERT_USERS_SQL = "INSERT INTO bookedmovie"
                + "  (bookedmoviename, bookedmoviegenre, bookedmovierating) VALUES "
                + " (?, ?, ?);";

        int result = 0;

        Class.forName("com.mysql.jdbc.Driver");

        try (Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/sample?useSSL=false", "root", "PASSWORD");
             // Step 2:Create a statement using connection object
             PreparedStatement preparedStatement = connection.prepareStatement(INSERT_USERS_SQL)) {

            preparedStatement.setString(1, movie.getMovieName());
            preparedStatement.setString(2, movie.getMovieGenre());
            preparedStatement.setDouble(3, movie.getMovieRating());

            System.out.println(preparedStatement);
            // Step 3: Execute the query or update query
            result = preparedStatement.executeUpdate();

            Statement statement=connection.createStatement();
            ResultSet resultSet=statement.executeQuery("SELECT * FROM sample.bookedmovie");
            List<Map<String, String>> mapList = getList(resultSet);
            System.out.println(mapList);

        } catch (SQLException e) {
            // process sql exception
            e.printStackTrace();
        }
        return result;
    }

    public static List<Map<String, String>> getList(ResultSet resultSet) throws SQLException {
        List<Map<String, String>> mapList = new ArrayList<>();
        ResultSetMetaData resultSetMetaData = resultSet.getMetaData();
        int columnNumber = resultSetMetaData.getColumnCount();
        while (resultSet.next()) {
            Map<String, String> map = new HashMap<>();
            int count = 1;
            while (count <= columnNumber) {
                String columnName = resultSetMetaData.getColumnName(count);
                map.put(columnName, resultSet.getString(columnName));
                count++;
            }
            mapList.add(map);
        }
        return mapList;
    }

}

@Data
@Builder
class Movie {
    public String movieName;
    public String movieGenre;
    public double movieRating;
}

这里我附上了 Java 运行的成功截图,并且同样的记录也已插入 MySQL。在此处输入图像描述

MySQL

【讨论】:

  • 我的密码是空的,这就是原因。非常感谢您,但不幸的是,这并不是我所需要的。 ` bookAMovie(Movie.builder().movi​​eGenre("Comic").movi​​eRating(8).movi​​eName("Movie1").build()); `您在这里添加电影,而我会自动从电影表中添加电影,然后将它们显示给用户。
  • 是的,但在保存之前。你怎么能表现出来?
  • 在我的问题中,代码的第一部分实际上从数据库中获取电影表并显示它。这是通过自动生成的 JSF 页面代码完成的。
  • 对不起,我不敢给你。 xd
  • @mezar 是的,但是在 Java 中,您需要获取该 Movie 对象。无论我写什么,它都是为独立应用程序编写的。
猜你喜欢
  • 2018-05-06
  • 2018-05-11
  • 1970-01-01
  • 1970-01-01
  • 2014-01-27
  • 2017-11-30
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多