{"id":14983115,"url":"https://github.com/zionlin2016/easyui-system","last_synced_at":"2025-08-22T14:07:38.441Z","repository":{"id":201368599,"uuid":"78177615","full_name":"ZionLin2016/EasyUI-System","owner":"ZionLin2016","description":"SpringMVC+Hibernate+EasyUI+Bootstrap的后台权限管理系统","archived":false,"fork":false,"pushed_at":"2018-11-29T14:06:48.000Z","size":449,"stargazers_count":23,"open_issues_count":1,"forks_count":13,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-09T11:22:05.701Z","etag":null,"topics":["bootstrap","easyui","springmvc"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZionLin2016.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-01-06T05:42:52.000Z","updated_at":"2023-04-15T20:55:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"6d71f9ca-5f9e-4120-a196-05935f9e4a46","html_url":"https://github.com/ZionLin2016/EasyUI-System","commit_stats":null,"previous_names":["zionlin2016/easyui-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZionLin2016/EasyUI-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZionLin2016%2FEasyUI-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZionLin2016%2FEasyUI-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZionLin2016%2FEasyUI-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZionLin2016%2FEasyUI-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZionLin2016","download_url":"https://codeload.github.com/ZionLin2016/EasyUI-System/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZionLin2016%2FEasyUI-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271650860,"owners_count":24796725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","easyui","springmvc"],"created_at":"2024-09-24T14:06:45.663Z","updated_at":"2025-08-22T14:07:38.416Z","avatar_url":"https://github.com/ZionLin2016.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"### EasyUI-System\n======================================================================\n\n### 项目描述\nSpring4 + Spring mvc + Hibernate4 + Maven + EasyUI + 少量Bootstrap的后台权限管理系统\u003cbr/\u003e\n这是一个基础框架，内部已经实现了泛型的增删改查、预先抓取(可以抓取多级对象)、动态条件查询(QueryFilter)等功能\u003cbr/\u003e\n使用这个框架做后台，会大大降低你的代码量\u003cbr/\u003e\n项目包含了通用的Controller方法日志，使用AOP拦截，拦截了所有方法，能知道谁(IP)在什么时候，访问了什么类的什么方法，传递的参数是什么，返回了什么值\u003cbr/\u003e\n项目使用拦截器做权限控制，可以控制到任何url、任何按钮、菜单，保障你的项目安全\u003cbr/\u003e\n项目使用javamelody监控dao、service、controller和系统的状况\u003cbr/\u003e\n项目使用druid监控数据源信息\u003cbr/\u003e\n\n------------------------------------------------------\n  \n### 框架特点\n\n框架使用主流的Spring MVC+Hibernate4整合，基于注解的配置，基本框架都已配置完毕，不需要更改任何XML文件；\n框架抽象了BaseDao/BaseService/BaseAction的功能，程序员开发一套增删改查，不需要编写大量代码，建立几个空的接口和实现类，其他全由Base包下的功能实现；\n可以实现动态条件查询、分页、排序、和多表级联查询；\n上手容易，程序员在此基础上二次开发，不需要配置任何配置文件，只要遵循约定，书写相应注解就可以实现项目90%的功能，针对更复杂的操作，也提供了相应的接口，具体请看BaseDao的实现。\n\n--------------------------------------------------------\n\n### 功能开发顺序\n你想要开发一个功能，首先你肯定有表，那么顺序就是\n+ 先写Model，将表和对象进行映射(注意@Entity和@Table注解的使用)\n+ 编写Dao接口和DaoImpl实现(注意继承BaseDao和实现BaseDaoImpl，并且要增加@Repository注解)\n+ 编写Service接口和ServiceImpl实现(注意继承BaseService和实现BaseServiceImpl，并且要增加@Service的注解，里面需要注入你自己的dao)\n+ 编写Controller(注意添加@Controller，便于程序自动扫描为控制器)\n\n----------------------------------------------------------\n### 界面截图\n![image](https://github.com/ZionLin2016/EasyUI-System/raw/master/readme-image/snipaste20170206_221811.png)\n![image](https://github.com/ZionLin2016/EasyUI-System/raw/master/readme-image/snipaste20170206_221843.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzionlin2016%2Feasyui-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzionlin2016%2Feasyui-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzionlin2016%2Feasyui-system/lists"}