An open API service indexing awesome lists of open source software.

https://github.com/youthlin/mini-framework

mini IoC, MVC, RPC framework
https://github.com/youthlin/mini-framework

ioc java mvc rpc

Last synced: 2 months ago
JSON representation

mini IoC, MVC, RPC framework

Awesome Lists containing this project

README

          

Mini-framework
==============
[![Build Status](https://travis-ci.org/YouthLin/mini-framework.svg?branch=master)](https://travis-ci.org/YouthLin/mini-framework)
[![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)

```xml

1.1.0

```
Mini-IoC
--------
A Spring-style simple Ioc container.

```xml

com.youthlin
mini-ioc
${mini-framework.version}

```
examples: https://github.com/YouthLin/examples/tree/master/example-my-ioc

### JUnit Supports
```java
@RunWith(MiniRunner.class) //Use MiniRunner to run Test
@Scan("com.youthlin.examples") //Scan packages
public class MyServiceTest{
@Resource
private IHelloService helloService;
@Test
public void test(){
helloService.sayHello("JUnit");
}
}

```

Mini-MVC
--------
A Spring MVC style simple MVC framework, which supports MyBatis3, Thymeleaf, etc.

```xml

com.youthlin
mini-mvc
${mini-framework.version}

```

examples: https://github.com/YouthLin/examples/tree/master/example-mini-mvc

Mini-RPC
--------
A Mini RPC framework, which supports callback, async, etc.
```xml

com.youthlin
mini-rpc
${mini-framework.version}

```
examples: https://github.com/YouthLin/examples
example-rpc-api/provider/consumer