File tree Expand file tree Collapse file tree 11 files changed +21
-21
lines changed
src/main/java/com/hellokaton/blade/mvc Expand file tree Collapse file tree 11 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ about: Report a general framework issue. help us improve this framework.
66- System Version (e.g. Mac Os 10.14.3):
77- Build tools (e.g. maven/gradle):
88- JDK Version (e.g. ` 1.8 ` ):
9- - Blade Version (e.g. ` 2.1.2.BETA ` ):
9+ - Blade Version (e.g. ` 2.1.2.RELEASE ` ):
1010
1111### Describe the bug
1212
@@ -19,7 +19,7 @@ Steps to reproduce the behavior:
19191 . Operating system and its version
20202 . Build tools (e.g. maven or gradle)
21213 . JDK version and blade version(e.g ` 1.8 ` )
22- 4 . Blade Version (e.g. ` 2.1.2.BETA ` ):
22+ 4 . Blade Version (e.g. ` 2.1.2.RELEASE ` ):
23235 . See error
2424
2525### Expected behavior:
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ Please provide the following information if applicable:
88
99- Operating system and its version
1010- Build tools (e.g. maven or gradle)
11- - JDK version and blade version(e.g ` 2.1.2.BETA ` )
11+ - JDK version and blade version(e.g ` 2.1.2.RELEASE ` )
Original file line number Diff line number Diff line change @@ -64,14 +64,14 @@ Run with `Maven`:
6464<dependency >
6565 <groupId >com.hellokaton</groupId >
6666 <artifactId >blade-core</artifactId >
67- <version >2.1.2.BETA </version >
67+ <version >2.1.2.RELEASE </version >
6868</dependency >
6969```
7070
7171or ` Gradle ` :
7272
7373``` sh
74- compile ' com.hellokaton:blade-core:2.1.2.BETA '
74+ compile ' com.hellokaton:blade-core:2.1.2.RELEASE '
7575```
7676
7777Write the ` main ` method and the ` Hello World ` :
@@ -612,7 +612,7 @@ The `hello.html` template
612612</html >
613613```
614614
615- [ Render API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView- )
615+ [ Render API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView- )
616616
617617## Redirects
618618
@@ -623,7 +623,7 @@ public void redirectToGithub(RouteContext ctx){
623623}
624624```
625625
626- [ Redirect API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String- )
626+ [ Redirect API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String- )
627627
628628## Write Cookie
629629
@@ -635,7 +635,7 @@ public void writeCookie(RouteContext ctx){
635635}
636636```
637637
638- [ Cookie API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String- )
638+ [ Cookie API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String- )
639639
640640## Web Hook
641641
Original file line number Diff line number Diff line change 6161<dependency >
6262 <groupId >com.hellokaton</groupId >
6363 <artifactId >blade-core</artifactId >
64- <version >2.1.2.BETA </version >
64+ <version >2.1.2.RELEASE </version >
6565</dependency >
6666```
6767
7070或者 ` Gradle ` :
7171
7272``` sh
73- compile ' com.hellokaton:blade-core:2.1.2.BETA '
73+ compile ' com.hellokaton:blade-core:2.1.2.RELEASE '
7474```
7575
7676编写 ` main ` 函数写一个 ` Hello World ` :
@@ -614,7 +614,7 @@ public static void main(String[] args) {
614614</html >
615615```
616616
617- [ Render API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView- )
617+ [ Render API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView- )
618618
619619## 重定向
620620
@@ -625,7 +625,7 @@ public void redirectToGithub(RouteContext ctx){
625625}
626626```
627627
628- [ Redirect API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String- )
628+ [ Redirect API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String- )
629629
630630## 写入Cookie
631631
@@ -637,7 +637,7 @@ public void writeCookie(RouteContext ctx){
637637}
638638```
639639
640- [ Cookie API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.BETA /com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String- )
640+ [ Cookie API] ( http://static.javadoc.io/com.hellokaton/blade-core/2.1.2.RELEASE /com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String- )
641641
642642## 路由拦截
643643
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >com.hellokaton</groupId >
77 <artifactId >blade</artifactId >
8- <version >2.1.2.BETA </version >
8+ <version >2.1.2.RELEASE </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public interface BladeConst {
3030 int DEFAULT_SERVER_PORT = 9000 ;
3131 String DEFAULT_SERVER_ADDRESS = "0.0.0.0" ;
3232 String LOCAL_IP_ADDRESS = "127.0.0.1" ;
33- String VERSION = "2.1.2.BETA " ;
33+ String VERSION = "2.1.2.RELEASE " ;
3434 String WEB_JARS = "/webjars/" ;
3535 String CLASSPATH = BladeKit .getCurrentClassPath ();
3636 String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz" ;
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >com.hellokaton</groupId >
77 <artifactId >blade</artifactId >
8- <version >2.1.2.BETA </version >
8+ <version >2.1.2.RELEASE </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
2323 <dependency >
2424 <groupId >com.hellokaton</groupId >
2525 <artifactId >blade-security</artifactId >
26- <version >2.1.2.BETA </version >
26+ <version >2.1.2.RELEASE </version >
2727 </dependency >
2828 <dependency >
2929 <groupId >org.projectlombok</groupId >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >com.hellokaton</groupId >
77 <artifactId >blade</artifactId >
8- <version >2.1.2.BETA </version >
8+ <version >2.1.2.RELEASE </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >blade</artifactId >
77 <groupId >com.hellokaton</groupId >
8- <version >2.1.2.BETA </version >
8+ <version >2.1.2.RELEASE </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >com.hellokaton</groupId >
77 <artifactId >blade</artifactId >
8- <version >2.1.2.BETA </version >
8+ <version >2.1.2.RELEASE </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
You can’t perform that action at this time.
0 commit comments