We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3ba4d commit 590cb7dCopy full SHA for 590cb7d
generator/src/main/java/com/reajason/javaweb/memshell/config/ShellToolConfig.java
@@ -1,5 +1,6 @@
1
package com.reajason.javaweb.memshell.config;
2
3
+import com.fasterxml.jackson.annotation.JsonIgnore;
4
import lombok.AllArgsConstructor;
5
import lombok.Data;
6
import lombok.NoArgsConstructor;
@@ -19,7 +20,9 @@ public class ShellToolConfig {
19
20
* 模板类 shellClass
21
*/
22
private Class<?> shellClass;
- private TypeDescription shellTypeDescription;
23
+
24
+ @JsonIgnore
25
+ private transient TypeDescription shellTypeDescription;
26
27
/**
28
* shellClass 的类名
0 commit comments