All Projects → MrCoderStack → Springbootdemo

MrCoderStack / Springbootdemo

Licence: apache-2.0
本项目基于springboot最新版2.1.3RELEASE 收集记录学习spring的点点滴滴,通过每一个小demo,一步步进阶,逐步完善。

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Springbootdemo

Demo Project
存放学习过程中的demo项目,别光fork,顺便点下⭐哦
Stars: ✭ 198 (-28.78%)
Mutual labels:  springboot, demo
Vue Demo Collection
A collection of Vue.js demos
Stars: ✭ 274 (-1.44%)
Mutual labels:  demo
Jwt Spring Security Demo
This is a demo for using JWT (JSON Web Token) with Spring Security and Spring Boot. I completely rewrote my first version. Now this solution is based on the code base from the JHipster Project. I tried to extract the minimal configuration and classes that are needed for JWT-Authentication and did some changes.
Stars: ✭ 2,843 (+922.66%)
Mutual labels:  demo
Spider For Netease Music
抓取网易云音乐上所有歌曲的评论数量,并整理数据打造一个前端展示页面
Stars: ✭ 268 (-3.6%)
Mutual labels:  demo
Laravel Demo Mode
A package to protect your work in progress from prying eyes
Stars: ✭ 259 (-6.83%)
Mutual labels:  demo
Itstack Demo Design
🎨 《重学Java设计模式》是一本互联网真实案例实践书籍。以落地解决方案为核心,从实际业务中抽离出,交易、营销、秒杀、中间件、源码等22个真实场景,来学习设计模式的运用。欢迎关注小傅哥,微信(fustack),公众号:bugstack虫洞栈,博客:https://bugstack.cn
Stars: ✭ 4,188 (+1406.47%)
Mutual labels:  springboot
Webauthn.io
The source code for webauthn.io, a demonstration of WebAuthn.
Stars: ✭ 252 (-9.35%)
Mutual labels:  demo
Poisson blend
Seamless copy-and-paste of images with Poisson Blending.
Stars: ✭ 277 (-0.36%)
Mutual labels:  demo
React Ssd1306
📟 A React Renderer for SSD1306 OLED chip on Raspberry Pi.
Stars: ✭ 273 (-1.8%)
Mutual labels:  demo
Drools
rules engine
Stars: ✭ 266 (-4.32%)
Mutual labels:  springboot
Flutter Ui Nice
More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.
Stars: ✭ 3,092 (+1012.23%)
Mutual labels:  demo
Lamp Boot
lamp-boot 基于SpringBoot(2.3.6.RELEASE) 的前后分离的快速开发平台,其中的可配置的SaaS功能尤其闪耀, 具备RBAC功能、网关统一鉴权、Xss防跨站攻击、自动代码生成、多种存储系统、分布式事务、分布式定时任务等多个模块,支持多业务系统并行开发, 支持多服务并行开发,可以作为后端服务的开发脚手架。代码简洁,注释齐全,架构清晰,非常适合学习和企业作为基础框架使用。
Stars: ✭ 257 (-7.55%)
Mutual labels:  springboot
Yfax Parent
SprintBoot开发的Rest API接口项目实战,集成了拦截器,日志处理,mysql,mybatis, oauth2.0, spring secutity等,已投入生产线上使用。应用了https://github.com/hemin1003/spring-boot-study 所含功能。配套的后台管理系统实战见:https://github.com/hemin1003/aylson-parent
Stars: ✭ 271 (-2.52%)
Mutual labels:  springboot
Springboot Shiro
🍀 Springboot + shiro权限管理。这或许是流程最详细、代码最干净、配置最简单的shiro上手项目了。
Stars: ✭ 258 (-7.19%)
Mutual labels:  springboot
Ruoyi Vue Pro
基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统
Stars: ✭ 260 (-6.47%)
Mutual labels:  springboot
Instagram
A universal instagram clone built with Expo
Stars: ✭ 258 (-7.19%)
Mutual labels:  demo
Light Task Scheduler
Distributed Scheduled Job Framework
Stars: ✭ 2,899 (+942.81%)
Mutual labels:  springboot
Api Docs
api.nasa.gov
Stars: ✭ 267 (-3.96%)
Mutual labels:  demo
Wepy Demo Bookmall
Demo codes for 🐼📖 which used in a very early version.
Stars: ✭ 278 (+0%)
Mutual labels:  demo
Quietnet
Simple chat program that communicates using inaudible sounds
Stars: ✭ 2,924 (+951.8%)
Mutual labels:  demo

SpringBootDemo

Spring Boot 学习示例

Spring Boot 2.1.3.RELEASE Mysql 5.6 JDK 1.8 Maven license

介绍

本项目基于springboot最新版2.1.3RELEASE 收集记录学习spring的点点滴滴,通过每一个小demo,一步步进阶,逐步完善。

实际开发过程很少碰到单模块的项目,所以该项目使用多模块开发,更贴合实际开发要求。 所以检出项目时请检出整个目录,而不是只检出某个demo。

当然考虑到多模块加载依赖问题,也可以只检出某个模块的demo,只是运行前请更改子模块pom.xml:

更改前:

    <parent>
        <groupId>com.mrcoder</groupId>
        <artifactId>SpringBootDemo</artifactId>
        <version>1.0.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

更改后:

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

子模块简写

sb =》 spring boot

sbm =》 spring boot mybatis

sbmp =》 spring boot mybatis plus

案例

如果觉得不错,请右上角 STAR 哦~

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].