Commit d8384f37 by xiaolang850403

日常提交

parent 44e3a8d0
...@@ -132,7 +132,6 @@ ...@@ -132,7 +132,6 @@
<artifactId>java-jwt</artifactId> <artifactId>java-jwt</artifactId>
<version>3.8.3</version> <version>3.8.3</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
......
...@@ -51,6 +51,11 @@ public class UserController { ...@@ -51,6 +51,11 @@ public class UserController {
@Value("${refexpire}") @Value("${refexpire}")
private String refexpire; private String refexpire;
@GetMapping("/hello")
public String hello() {
return "login";
}
@RequestMapping("/register") @RequestMapping("/register")
public Result register(@Validated(value={Insert.class}) @RequestBody User user, BindingResult result) throws UnsupportedEncodingException { public Result register(@Validated(value={Insert.class}) @RequestBody User user, BindingResult result) throws UnsupportedEncodingException {
if (result.hasErrors()) { if (result.hasErrors()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment