會點java,作點web,基本也就是spring全家桶,因此打算本身折騰一個,實現最基本最經常使用的一些功能。斷斷續續地終於完成了大部分本身想要的功能。實際項目中使用或許還不太現實,不過也提供了一個去了解框架實現的一個簡單的版本,也讓你們有動力有思路本身去實現一個,源碼請戳github。java
IOC很大程度借鑑了Spring,簡單的使用git
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("test.xml"); ServiceBean serviceBean=(ServiceBean)applicationContext.getBean("testService"); System.out.println(serviceBean); serviceBean.service(); ServiceBean serviceBean2=(ServiceBean)applicationContext.getBean("serviceBean"); System.out.println(serviceBean2); serviceBean2.service(); //全局的容器上下文 ApplicationContextHolder holder=applicationContext.getBean("applicationContextHolder", ApplicationContextHolder.class); System.out.println("holder get bean : "+holder.getBean("serviceBean"));
IOC詳細說明github
實現了許多SpringMvc裏高頻使用的功能和一些針對restful改進的功能web
@Api("/base") public class TestController extends BaseController { @Value("${user.name:test}") private String name; @Inject private UserService userService; @RequestMapping public String index() { userService.query(); return name; } @RequestMapping(mapUrl = "/test/{id}", method = HttpMethod.GET) @CROS(origins = "www.baidu.com", methods = {HttpMethod.GET}, maxAge = "3600") public String patgTest(@PathVariable("id") String id) { return id; } @RequestMapping(mapUrl = "/test", method = HttpMethod.GET) @InterceptorSelect(include = {"aInterceptor"}, exclude = {"bInterceptor"}) public String interceptorTest() { return "haha"; } @RequestMapping(mapUrl = "/index") @CROS public String paramTest(@RequestParam("id") long id, @RequestParam("name") String name) { return name + "---" + id; } @RequestMapping(mapUrl = "/user/{id}", method = HttpMethod.PUT) @CROS public User insert(@PathVariable("id") long id, @RequestBody User user) { return user; } }
看着是否是很熟悉-_- rest詳細說明spring