# 浪海博客 **Repository Path**: langhai666/langhai-blog ## Basic Information - **Project Name**: 浪海博客 - **Description**: 浪海博客,一个基于SpringBoot快速构建的单体架构项目,部署简单方便,适用于个人博客系统搭建。 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: http://www.langhai.cc - **GVP Project**: No ## Statistics - **Stars**: 54 - **Forks**: 5 - **Created**: 2022-11-19 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: 博客, Java ## README Langhai Blog [中文](./README.md) Introduction: Langhai Blog is a single architecture project built quickly based on SpringBoot, which is simple and convenient to deploy and suitable for personal blog system construction. Online presentation:http://www.langhai.cc The actual effect is subject to the code (the demo site is the previous version) contact information QQ:676558206 email 676558206@qq.com langhai666@gmail.com Branch description: Master is the complete version, and the simplicity branch can be started with only the MySQL and Redis databases, as well as the file storage component mini, without the need to introduce search engine ES and message queue MQ. Screenshot of some pages Screenshot of homepage ![首页截图](./images/首页截图.png) Screenshot of login page ![登录页面截图](./images/登录页面截图.png) Deployment method: [detailed description](https://langhai.cc/article/articleShow?id=38) linux ==>> nohup java -jar langhai-blogs.jar > langhai.log & windows ==>> java -jar langhai-blogs.jar Technical selection: springboot Back-end rapid building framework thymeleaf Data template engine hutool Java toolset netty websocket flowable redis minio elasticSearch rabbitMQ Copyright/citation statement The main front-end template of Langhai blog system comes from the html5up.net website. Blog front-end template [燕十三博客模板](https://gitee.com/yssgit/yan_shisan_blog_template) The navigation module is from an open source project [geekape](https://github.com/geekape/geek-navigation) Background management comes from open source projects [Pear Admin](https://gitee.com/pear-admin/Pear-Admin-Layui) Aggregate search from open source projects [juso](https://github.com/yitd/juso.vip) Music player from open source project [QPlayer](https://github.com/Jrohy/QPlayer) Basic components: Relational database MySQL [MySQL All instructions](http://www.langhai.cc/article/articleShow?id=53) ```sql /* After importing langhaibologs/sql/langhaibologs.sql, you need to fill in the default data. The new role should be consistent with the code cc.langhai.config.constant.RoleConstant */ INSERT INTO role VALUES(1, 'admin', NOW(), NULL); INSERT INTO role VALUES(2, 'user', NOW(), NULL); INSERT INTO role VALUES(3, 'vip', NOW(), NULL); ``` Non-relational database Redis Picture storage server minio [minio All instructions](http://www.langhai.cc/article/articleShow?id=54) Search engine (optional) elasticSearch [elasticSearch All instructions](http://www.langhai.cc/article/articleShow?id=55) Message Queuing (optional) rabbitMQ RabbitMQ All instructions