Skip to content

Commit ec0ea34

Browse files
author
王亮
committed
upload version 1.0.3
1 parent e995792 commit ec0ea34

File tree

6 files changed

+30
-9
lines changed

6 files changed

+30
-9
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.codingapi.springboot</groupId>
1212
<artifactId>springboot-framework-parent</artifactId>
13-
<version>1.0.2</version>
13+
<version>1.0.3</version>
1414

1515
<url>https://github.com/codingapi/springboot-framewrok</url>
1616
<name>springboot-framework-parent</name>

springboot-data-permission/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-framework-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>1.0.2</version>
8+
<version>1.0.3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.codingapi.springboot</groupId>
3434
<artifactId>springboot-framework</artifactId>
35-
<version>1.0.2</version>
35+
<version>1.0.3</version>
3636
</dependency>
3737

3838
<dependency>

springboot-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>com.codingapi.springboot</groupId>
66
<artifactId>springboot-framework-parent</artifactId>
7-
<version>1.0.2</version>
7+
<version>1.0.3</version>
88
</parent>
99
<artifactId>springboot-example</artifactId>
10-
<version>1.0.2</version>
10+
<version>1.0.3</version>
1111

1212
<name>springboot-example</name>
1313
<description>springboot-example project for Spring Boot</description>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.codingapi.springboot</groupId>
3131
<artifactId>springboot-framework</artifactId>
32-
<version>1.0.2</version>
32+
<version>1.0.3</version>
3333
</dependency>
3434

3535
<dependency>

springboot-example/src/main/java/com/codingapi/springboot/example/domain/Demo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.codingapi.springboot.example.domain;
22

33
import com.codingapi.springboot.example.domain.event.DemoNameChangeEvent;
4-
import com.codingapi.springboot.framework.persistence.IPersistence;
54
import com.codingapi.springboot.framework.event.EventPusher;
5+
import com.codingapi.springboot.framework.persistence.IPersistence;
66
import lombok.Getter;
77
import lombok.NoArgsConstructor;
88
import lombok.Setter;
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.codingapi.springboot.example.domain.handler;
2+
3+
import com.codingapi.springboot.example.domain.event.DemoNameChangeEvent;
4+
import com.codingapi.springboot.framework.handler.Handler;
5+
import com.codingapi.springboot.framework.handler.IHandler;
6+
import lombok.extern.slf4j.Slf4j;
7+
8+
/**
9+
* @author lorne
10+
* @since 1.0.0
11+
*/
12+
@Slf4j
13+
@Handler
14+
public class DemoNameMsgHandler implements IHandler<DemoNameChangeEvent> {
15+
16+
@Override
17+
public void handler(DemoNameChangeEvent event) {
18+
log.info("oldName:{},currentName:{}",event.getOldName(),event.getCurrentName());
19+
}
20+
21+
}

springboot-framework/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>com.codingapi.springboot</groupId>
66
<artifactId>springboot-framework-parent</artifactId>
7-
<version>1.0.2</version>
7+
<version>1.0.3</version>
88
</parent>
99
<artifactId>springboot-framework</artifactId>
10-
<version>1.0.2</version>
10+
<version>1.0.3</version>
1111

1212
<name>springboot-framework</name>
1313
<description>springboot-framework project for Spring Boot</description>

0 commit comments

Comments
 (0)