答案是使用Spring Boot快速搭建在线投票平台,通过Spring MVC处理请求,JPA操作MySQL数据库,Thymeleaf渲染页面,实现投票主题展示、选项提交与结果统计功能。

要创建一个小型在线投票平台,Java可以结合Spring Boot、Thymeleaf(或JSP)、数据库(如MySQL)来快速搭建。整个系统包括用户发起投票、查看选项、提交投票和查看结果等功能。下面是一个简单可行的实现思路。
1. 项目结构与技术选型
使用Spring Boot可以快速构建Web应用,简化配置。主要技术栈如下:
- 后端框架: Spring Boot + Spring MVC + Spring Data JPA
- 前端模板: Thymeleaf(或HTML+Ajax)
- 数据库: MySQL 或 H2(开发阶段可用内存数据库)
- 构建工具: Maven 或 Gradle
创建Maven项目,在pom.xml中引入关键依赖:
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-thymeleaf mysql mysql-connector-java
2. 数据模型设计
定义两个核心实体类:VoteTopic(投票主题)和VoteOption(选项)。
立即学习“Java免费学习笔记(深入)”;
VoteTopic.java
8CMS网站管理系统 (著作权登记号 2009SRBJ3516 ),基于微软 asp + Access 开发,是实用的双模建站系统,应用于企业宣传型网站创建、贸易型网站创建、在线购买商务型网站创建。是中小型企业能够以最低的成本、最少的人力投入、在最短的时间内架设一个功能齐全、性能优异、SEO架构合理的网站平台工具。8CMS的使命是把建设网站最大程度的简化。
@Entity
public class VoteTopic {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String title;
@OneToMany(mappedBy = "topic", cascade = CascadeType.ALL)
private List options = new ArrayList<>();
// getter 和 setter
}
VoteOption.java
@Entity
public class VoteOption {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String optionText;
private int voteCount = 0;
@ManyToOne
@JoinColumn(name = "topic_id")
private VoteTopic topic;
// getter 和 setter
}
3. 控制器处理请求
编写VoteController处理页面跳转和投票逻辑。
@Controller
public class VoteController {
@Autowired
private VoteTopicRepository topicRepo;
@GetMapping("/vote/{id}")
public String showVotePage(@PathVariable Long id, Model model) {
VoteTopic topic = topicRepo.findById(id).orElse(null);
if (topic == null) return "error";
model.addAttribute("topic", topic);
return "vote_page"; // 对应 templates/vote_page.html
}
@PostMapping("/vote/submit")
public String submitVote(@RequestParam Long optionId) {
Optional opt = optionRepo.findById(optionId);
if (opt.isPresent()) {
VoteOption option = opt.get();
option.setVoteCount(option.getVoteCount() + 1);
optionRepo.save(option);
}
return "redirect:/result/" + option.getTopic().getId();
}
@GetMapping("/result/{id}")
public String showResult(@PathVariable Long id, Model model) {
VoteTopic topic = topicRepo.findById(id).orElse(null);
model.addAttribute("topic", topic);
return "result_page";
}
}
4. 前端页面展示(Thymeleaf示例)
在resources/templates/vote_page.html中显示投票项:
结果页result_page.html显示统计:
投票结果:
- : 票
基本上就这些。启动类加上@SpringBootApplication,配置好数据库连接(application.properties),运行即可访问。









