{"id":39682049,"url":"https://github.com/youthlin/mini-framework","last_synced_at":"2026-01-18T09:54:02.799Z","repository":{"id":57729933,"uuid":"100042268","full_name":"youthlin/mini-framework","owner":"youthlin","description":"mini IoC, MVC, RPC framework","archived":false,"fork":false,"pushed_at":"2018-05-03T12:23:38.000Z","size":284,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-03T21:45:44.617Z","etag":null,"topics":["ioc","java","mvc","rpc"],"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/youthlin.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}},"created_at":"2017-08-11T14:49:45.000Z","updated_at":"2023-12-11T08:19:04.000Z","dependencies_parsed_at":"2022-09-11T06:21:20.261Z","dependency_job_id":null,"html_url":"https://github.com/youthlin/mini-framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/youthlin/mini-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youthlin%2Fmini-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youthlin%2Fmini-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youthlin%2Fmini-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youthlin%2Fmini-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/youthlin","download_url":"https://codeload.github.com/youthlin/mini-framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youthlin%2Fmini-framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":["ioc","java","mvc","rpc"],"created_at":"2026-01-18T09:54:00.669Z","updated_at":"2026-01-18T09:54:02.778Z","avatar_url":"https://github.com/youthlin.png","language":"Java","readme":"Mini-framework\n==============\n[![Build Status](https://travis-ci.org/YouthLin/mini-framework.svg?branch=master)](https://travis-ci.org/YouthLin/mini-framework)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.youthlin/mini-framework/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.youthlin/mini-framework)\n\n```xml\n\u003cproperties\u003e\n    \u003cmini-framework.version\u003e1.1.0\u003c/mini-framework.version\u003e\n\u003c/properties\u003e\n```\nMini-IoC\n--------\nA Spring-style simple Ioc container.\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.youthlin\u003c/groupId\u003e\n    \u003cartifactId\u003emini-ioc\u003c/artifactId\u003e\n    \u003cversion\u003e${mini-framework.version}\u003c/version\u003e\n\u003c/dependency\u003e\n\n```\nexamples: https://github.com/YouthLin/examples/tree/master/example-my-ioc\n\n### JUnit Supports\n```java\n@RunWith(MiniRunner.class)      //Use MiniRunner to run Test\n@Scan(\"com.youthlin.examples\")  //Scan packages\npublic class MyServiceTest{\n    @Resource\n    private IHelloService helloService;\n    @Test\n    public void test(){\n        helloService.sayHello(\"JUnit\");\n    }\n}\n\n```\n\n\nMini-MVC\n--------\nA Spring MVC style simple MVC framework, which supports MyBatis3, Thymeleaf, etc.\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.youthlin\u003c/groupId\u003e\n    \u003cartifactId\u003emini-mvc\u003c/artifactId\u003e\n    \u003cversion\u003e${mini-framework.version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nexamples: https://github.com/YouthLin/examples/tree/master/example-mini-mvc\n\nMini-RPC\n--------\nA Mini RPC framework, which supports callback, async, etc.\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.youthlin\u003c/groupId\u003e\n    \u003cartifactId\u003emini-rpc\u003c/artifactId\u003e\n    \u003cversion\u003e${mini-framework.version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\nexamples: https://github.com/YouthLin/examples   \nexample-rpc-api/provider/consumer\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyouthlin%2Fmini-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyouthlin%2Fmini-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyouthlin%2Fmini-framework/lists"}