File tree 8 files changed +26
-7
lines changed
main/java/com/codingapi/springboot/framework/trigger
test/java/com/codingapi/springboot/framework/rest
springboot-starter-data-fast
springboot-starter-id-generator
springboot-starter-security-jwt
8 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 12
12
13
13
<groupId >com.codingapi.springboot</groupId >
14
14
<artifactId >springboot-parent</artifactId >
15
- <version >1.5.5 </version >
15
+ <version >1.5.6 </version >
16
16
17
17
<url >https://github.com/codingapi/springboot-framewrok</url >
18
18
<name >springboot-parent</name >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >springboot-parent</artifactId >
7
7
<groupId >com.codingapi.springboot</groupId >
8
- <version >1.5.5 </version >
8
+ <version >1.5.6 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >springboot-parent</artifactId >
7
7
<groupId >com.codingapi.springboot</groupId >
8
- <version >1.5.5 </version >
8
+ <version >1.5.6 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >1.5.5 </version >
9
+ <version >1.5.6 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-security-jwt</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.codingapi.springboot</groupId >
7
7
<artifactId >springboot-parent</artifactId >
8
- <version >1.5.5 </version >
8
+ <version >1.5.6 </version >
9
9
</parent >
10
10
<artifactId >springboot-starter</artifactId >
11
11
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public void trigger(Trigger trigger){
77
77
}
78
78
}
79
79
}catch (Exception e ){
80
- log .warn ("trigger error:{} " ,e );
80
+ log .warn ("trigger error" ,e );
81
81
}
82
82
}
83
83
}
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ public interface TriggerHandler<T extends Trigger> {
24
24
* 执行完成以后是否删除触发器
25
25
* @return true删除
26
26
*/
27
- boolean remove ();
27
+ default boolean remove (){
28
+ return false ;
29
+ }
28
30
29
31
}
Original file line number Diff line number Diff line change
1
+ package com .codingapi .springboot .framework .rest ;
2
+
3
+ import lombok .extern .slf4j .Slf4j ;
4
+ import org .junit .jupiter .api .Test ;
5
+
6
+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
7
+
8
+ @ Slf4j
9
+ public class SessionClientTest {
10
+
11
+ @ Test
12
+ void test (){
13
+ SessionClient client = new SessionClient ();
14
+ String html = client .getHtml ("https://www.baidu.com" );
15
+ assertNotNull (html );
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments