Skip to content

Commit

Permalink
🔖 release 2.0.8-R3
Browse files Browse the repository at this point in the history
  • Loading branch information
hellokaton committed Jun 8, 2018
1 parent deefe50 commit 83061d3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Create a basic `Maven` project
<dependency>
<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.8-R2</version>
<version>2.0.8-R3</version>
</dependency>
```

Expand All @@ -71,7 +71,7 @@ Create a basic `Maven` project
or `Gradle`:

```sh
compile 'com.bladejava:blade-mvc:2.0.8-R2'
compile 'com.bladejava:blade-mvc:2.0.8-R3'
```

Write `main` method, try `Hello World`
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<dependency>
<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.8-R2</version>
<version>2.0.8-R3</version>
</dependency>
```

Expand All @@ -70,7 +70,7 @@
或者 `Gradle`:

```sh
compile 'com.bladejava:blade-mvc:2.0.8-R2'
compile 'com.bladejava:blade-mvc:2.0.8-R3'
```

编写 `main` 函数写一个 `Hello World`
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.8-SNAPSHOT</version>
<version>2.0.8-R3</version>
<packaging>jar</packaging>

<name>blade</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/blade/mvc/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public interface Const {
int DEFAULT_SERVER_PORT = 9000;
String DEFAULT_SERVER_ADDRESS = "0.0.0.0";
String LOCAL_IP_ADDRESS = "127.0.0.1";
String VERSION = "2.0.8-R2";
String VERSION = "2.0.8-R3";
String WEB_JARS = "/webjars/";
String CLASSPATH = BladeKit.getCurrentClassPath();
String CONTENT_TYPE_HTML = "text/html; charset=UTF-8";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/blade/server/netty/NettyServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ private void startTask() {
taskStruct.getMethod().invoke(target);
}
} catch (Exception e) {
log.warn("{}Task method error", getPrefixSymbol(), e.getMessage());
log.error("Task method error", e);
}
});

Expand Down

0 comments on commit 83061d3

Please sign in to comment.