Skip to content

Commit 004404f

Browse files
committed
v3.0 beta version
1 parent 81d6415 commit 004404f

File tree

325 files changed

+15269
-997
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

325 files changed

+15269
-997
lines changed

README.md

Lines changed: 84 additions & 61 deletions
Large diffs are not rendered by default.

codegenerator1.png

-31.1 KB
Loading

codegenerator2.png

-3.06 KB
Loading

codegenerator3.png

-121 KB
Binary file not shown.

codegenerator4.png

-143 KB
Binary file not shown.
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
package com.softdev.system.generator;
22

3-
import lombok.extern.slf4j.Slf4j;
43
import org.springframework.boot.SpringApplication;
54
import org.springframework.boot.autoconfigure.SpringBootApplication;
65

6+
/**
7+
* @author zhengkai.blog.csdn.net
8+
*/
79
@SpringBootApplication
8-
public class GeneratorWebApplication {
10+
public class Application {
911

1012
public static void main(String[] args) {
11-
SpringApplication.run(GeneratorWebApplication.class, args);
13+
SpringApplication.run(Application.class, args);
1214
}
1315

1416
}

generator-web/src/main/java/com/softdev/system/generator/config/GlobalDefaultExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class GlobalDefaultExceptionHandler {
1414
@ResponseBody
1515
public ReturnT defaultExceptionHandler(HttpServletRequest req, Exception e) {
1616
e.printStackTrace();
17-
return ReturnT.ERROR(e.getMessage());
17+
return ReturnT.error(e.getMessage());
1818
}
1919

2020
}

0 commit comments

Comments
 (0)