Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Postgrest | 21,405 | 4 | 10 hours ago | 37 | July 12, 2022 | 214 | mit | Haskell | ||
REST API for any Postgres database | ||||||||||
Mobile Security Framework Mobsf | 15,391 | 18 hours ago | 13 | August 28, 2023 | 12 | gpl-3.0 | JavaScript | |||
Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis. | ||||||||||
Flask Appbuilder | 4,368 | 301 | 33 | 5 days ago | 312 | November 20, 2023 | 167 | bsd-3-clause | Python | |
Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more. Demo (login with guest/welcome) - http://flaskappbuilder.pythonanywhere.com/ | ||||||||||
Php Curl Class | 3,202 | 690 | 358 | 5 days ago | 99 | September 11, 2023 | 2 | unlicense | PHP | |
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs | ||||||||||
Spring Boot Leaning | 2,068 | a year ago | 1 | Java | ||||||
Spring Boot 2.X 最全课程代码 | ||||||||||
X Springboot | 1,845 | 4 months ago | 2 | Java | ||||||
X-SpringBoot是一个轻量级的Java快速开发平台,能快速开发项目并交付【接私活利器】 | ||||||||||
Foal | 1,823 | 7 | 29 | a month ago | 94 | October 29, 2023 | 12 | mit | TypeScript | |
Full-featured Node.js framework, with no complexity. 🚀 Simple and easy to use, TypeScript-based and well-documented. | ||||||||||
Github Monitor | 1,517 | 2 years ago | 41 | gpl-3.0 | JavaScript | |||||
Github Sensitive Information Leakage Monitor(Github信息泄漏监控系统) | ||||||||||
Spring Boot Shiro | 1,496 | 3 years ago | 3 | Java | ||||||
Shiro基于SpringBoot +JWT搭建简单的restful服务 | ||||||||||
Deathstar | 1,244 | 3 years ago | 1 | December 17, 2020 | 6 | gpl-3.0 | ||||
Uses Empire's (https://github.com/BC-SECURITY/Empire) RESTful API to automate gaining Domain and/or Enterprise Admin rights in Active Directory environments using some of the most common offensive TTPs. |
更新日志 | 项目地址 | SpringCloud版本 |前台项目地址
ChatGPT体验地址,进群免费使用,扫码体验
项目说明
版本信息
环境
项目结构
X-SpringBoot
├─doc
│ ├─db.sql 项目SQL语句
│ ├─nginx.confi nginx 配置文件
│ ├─updateLog 更新日志
│
├─authentication 权限认证
├─common 公共模块
│ ├─annotation 自定义注解
│ ├─aspect 系统日志
│ ├─base base包
│ ├─exception 异常处理
│ ├─utils 一些工具类
│ └─xss XSS过滤
│
├─config 配置信息
├─interceptor token拦截器
│
├─modules 功能模块
│ ├─oss 文件服务模块
│ ├─sys 权限模块
│ └─gen 代码生成
│
├─Application 项目启动类
│
├──resources
│ ├─mapper SQL对应的XML文件
系统截图
常见问题
1、启动报错
是因为依赖没有引入 maven --> 先clear 再reimport 重新引入
2、数据库连接不上(mysql 5.7)
1) 看看application.yml 配置文件中 spring.profiles.active: dev
当前配置的是dev ,就修改application-dev.yml 中的数据库连接IP用户密码
2) 如果改完了还是不行,看看你mysql版本8.0以上 须要修改pom.xml中的 mysql-connector-java 的版本
最后