Skip to content

Commit

Permalink
🔖 refactor and release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
I-TAKE-TODAY committed Oct 14, 2018
1 parent 789fe26 commit a51c8fb
Show file tree
Hide file tree
Showing 68 changed files with 1,844 additions and 786 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public @interface Props {
> ## v1.2.1
- 修复注入原型错误

> ## v2.0.0

- 加入event机制

> ## 2.0.0
- 加入`ObjectFactory`
- 框架重构
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#### Today IOC 是我学习 Spring IOC 以及自己对IOC的理解之作。
### 前言
> 本人大学生一枚,专业是电子信息工程,大二在读。大一开始学Java,准确的说是高三最后的几周开始的. 果然兴趣是最好的老师, 在大一下学期自己独自一人从前端到后台写了我的个人网站:<a href="https://yanghaijian.top" target="_blank">TODAY BLOG</a> 。 从注册域名到备案再到网站成功上线,我遇到过的困难数不计其数。因为感兴趣所以我坚持了下来。第一个版本使用的纯Servlet写的。后来了解到Java有很多开源框架可以简化我的开发。于是又投入到新一轮的学习之中...... 学了Struts2后自己学着写了一个小框架:[TODAY WEB](https://gitee.com/TAKETODAY/today_web/tree/v1.1.1/),几百行搞定从解析xml定义的action到处理对应的请求。学了Spring MVC 我从自己的开发过程中发现了还是有不足的地方,于是我又写了[TODAY WEB 2.0](https://gitee.com/TAKETODAY/today_web) 。新的版本急需一个IOC容器,所以就有了此项目。
> 本人大学生一枚,专业是电子信息工程,大二在读。大一开始学Java,准确的说是高三最后的几周开始的. 果然兴趣是最好的老师, 在大一下学期自己独自一人从前端到后台写了我的个人网站:<a href="https://taketoday.cn" target="_blank">TODAY BLOG</a> 。 从注册域名到备案再到网站成功上线,我遇到过的困难数不计其数。因为感兴趣所以我坚持了下来。第一个版本使用的纯Servlet写的。后来了解到Java有很多开源框架可以简化我的开发。于是又投入到新一轮的学习之中...... 学了Struts2后自己学着写了一个小框架:[TODAY WEB](https://gitee.com/TAKETODAY/today_web/tree/v1.1.1/),几百行搞定从解析xml定义的action到处理对应的请求。学了Spring MVC 我从自己的开发过程中发现了还是有不足的地方,于是我又写了[TODAY WEB 2.0](https://gitee.com/TAKETODAY/today_web) 。新的版本急需一个IOC容器,所以就有了此项目。
### 使用说明

Expand Down
14 changes: 5 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>cn.taketoday</groupId>
<artifactId>today-context</artifactId>

<version>2.0.0.RELEASE</version>
<name>today-context-2.0.0.RELEASE</name>

Expand Down Expand Up @@ -45,14 +45,10 @@
<version>1.18.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
Expand Down
Loading

0 comments on commit a51c8fb

Please sign in to comment.