Java 中无法正常运行的评级和评论系统

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

我正在尝试用 Java 构建一个“评级和评论”页面,关于这种语言的信息并不多,大部分是 PHP 和 javascript。所以下面是我到目前为止根据我找到的资源所拥有的。我已经使用工作 servlet 进行了帐户注册/登录,那么我还需要为此添加 servlet 吗?除此之外,我还应该添加什么才能使其成为一个正常运行的页面?

对于上下文,我正在尝试完成一个从 1 到 5 的“星级”评级系统,带有一个文本框来留下书面评论,基本上就像每个消费者网页一样。

import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;

public class RatingPage extends Application {
    public void start(Stage stage) {
        
        Label ratingLabel = new Label("Rate this item:");
        Rating rating = new Rating();
        VBox ratingBox = new VBox(ratingLabel, rating);
        ratingBox.setAlignment(Pos.CENTER);
        ratingBox.setSpacing(10);

        
        Label reviewLabel = new Label("Leave a review:");
        TextArea reviewTextArea = new TextArea();
        VBox reviewBox = new VBox(reviewLabel, reviewTextArea);
        reviewBox.setAlignment(Pos.CENTER);
        reviewBox.setSpacing(10);

        
        Button submitButton = new Button("Submit");

       
        VBox vbox = new VBox(ratingBox, reviewBox, submitButton);
        vbox.setAlignment(Pos.CENTER);
        vbox.setSpacing(20);
        vbox.setPadding(new Insets(20));

        
        Scene scene = new Scene(vbox);
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}
java servlets rating review
© www.soinside.com 2019 - 2024. All rights reserved.