首先搭建Spring Boot后端,设计BlogPost实体类并用JPA实现数据持久化,通过BlogController处理页面请求,使用Thymeleaf模板引擎渲染index和create页面,配置H2内存数据库并启用控制台,最终实现文章的发布与展示功能。

用Java制作一个简易的博客系统,核心是搭建后端服务、设计数据模型、实现基本功能,并配合前端展示。下面从结构到代码一步步说明如何实现。
一个简单的博客系统可以使用以下技术栈:
这种组合能让初学者快速上手,无需复杂部署。
通过 Spring Initializr 创建项目,选择以下依赖:
立即学习“Java免费学习笔记(深入)”;
下载并导入IDE(如IntelliJ IDEA或Eclipse)。
创建一个表示博客文章的实体类:
@Entity
public class BlogPost {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
<pre class='brush:java;toolbar:false;'>private String title;
private String content;
private LocalDateTime createTime;
// 构造函数
public BlogPost() {
this.createTime = LocalDateTime.now();
}
// Getter 和 Setter 方法
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
public String getTitle() { return title; }
public void setTitle(String title) { this.title = title; }
public String getContent() { return content; }
public void setContent(String content) { this.content = content; }
public LocalDateTime getCreateTime() { return createTime; }}
使用Spring Data JPA定义接口操作数据库:
public interface BlogPostRepository extends JpaRepository<BlogPost, Long> {
}
这个接口无需实现,Spring会自动生成查询方法。
编写Controller来处理网页请求:
品牌咖啡茶饮网站管理系统是一款开源的,衍生于优秀的内容管理系统易优cms。 品牌咖啡茶饮网站管理系统秉承了易优CMS的先进设计理念,并且专注于餐饮企业。 品牌咖啡茶饮网站管理系统特点: 简单方便 品牌咖啡茶饮网站管理系统源码包安装十分方便,只需输入域名,然后再点两次鼠标,期间填入一些必要的安装信息就可以轻松完成整个安装过程。 使用十分便捷,安装后进后台,无需事先进行任何设置操作。 要进行网站设置
0
@Controller
public class BlogController {
<pre class='brush:java;toolbar:false;'>@Autowired
private BlogPostRepository blogPostRepository;
// 显示所有文章列表
@GetMapping("/")
public String listPosts(Model model) {
model.addAttribute("posts", blogPostRepository.findAll());
return "index";
}
// 显示发布文章的表单
@GetMapping("/new")
public String showCreateForm(Model model) {
model.addAttribute("post", new BlogPost());
return "create";
}
// 提交新文章
@PostMapping("/save")
public String savePost(@ModelAttribute BlogPost post) {
blogPostRepository.save(post);
return "redirect:/";
}}
在 src/main/resources/templates/ 目录下创建HTML文件。
index.html:显示文章列表
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head><title>我的博客</title></head>
<body>
<h1>文章列表</h1>
<a href="/new">写新文章</a>
<div th:each="post : ${posts}">
<h2 th:text="${post.title}"></h2>
<p th:text="${post.content}"></p>
<small th:text="${#temporals.format(post.createTime, 'yyyy-MM-dd HH:mm')}"></small>
<hr/>
</div>
</body>
</html>
create.html:发布文章的表单
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head><title>写文章</title></head>
<body>
<h1>写新文章</h1>
<form action="/save" method="post">
<input type="text" name="title" placeholder="标题" required /><br/>
<textarea name="content" rows="10" cols="50" placeholder="内容" required></textarea><br/>
<button type="submit">发布</button>
</form>
<a href="/">返回首页</a>
</body>
</html>
在 src/main/resources/application.properties 中添加:
# 使用H2内存数据库 spring.datasource.url=jdbc:h2:mem:blogdb spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.datasource.password= <h1>自动建表</h1><p>spring.jpa.hibernate.ddl-auto=create-drop spring.jpa.show-sql=true</p><h1>启用H2控制台(可选)</h1><p>spring.h2.console.enabled=true</p>
启动后可通过 http://localhost:8080/h2-console 查看数据。
运行主类(带有 @SpringBootApplication 注解的类),Spring Boot会自动启动内嵌Tomcat服务器。
访问 http://localhost:8080 即可看到博客首页。
基本上就这些。你可以继续扩展功能,比如添加文章详情页、编辑删除功能、用户登录、分类标签等。但这个简易系统已经具备了博客的核心要素:发布和查看文章。
以上就是如何使用Java制作简易的博客系统的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号