Browse Source

'忽略映射文件'

yq 2 years ago
parent
commit
19ff686e8b

+ 41 - 5
.gitignore

@@ -1,6 +1,42 @@
-### IDEA ###
-.idea/*
+# Created by .ignore support plugin (hsz.mobi)
+### Example user template template
+### Example user template
+
+# IntelliJ project files
+.idea
 *.iml
-*/target/*
-*/*.iml
-/.gradle/
+out
+gen
+target
+### Java template
+# Compiled class file
+*.class
+
+# Log file
+*.log
+log
+logs
+
+# BlueJ files
+*.ctxt
+
+# Mobile Tools for Java (J2ME)
+.mtj.tmp/
+
+# Package Files #
+*.jar
+*.war
+*.nar
+*.ear
+*.zip
+*.tar.gz
+*.rar
+
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
+hs_err_pid*
+
+.DS_Store
+
+.mvn
+mvnw
+mvnw.cmd

+ 24 - 0
eladmin-system/src/main/java/me/zhengjie/modules/security/rest/AuthorizationController.java

@@ -133,6 +133,30 @@ public class AuthorizationController {
         return ResponseEntity.ok(authInfo);
     }
 
+    @ApiOperation("登录授权")
+    @AnonymousPostMapping(value = "/login3")
+    public ResponseEntity<Object> login3(@Validated @RequestBody AuthUserDto authUser, HttpServletRequest request) throws Exception {
+        UsernamePasswordAuthenticationToken authenticationToken =
+                new UsernamePasswordAuthenticationToken(authUser.getUsername(), authUser.getPassword());
+        Authentication authentication = authenticationManagerBuilder.getObject().authenticate(authenticationToken);
+        SecurityContextHolder.getContext().setAuthentication(authentication);
+        // 生成令牌
+        String token = tokenProvider.createToken(authentication);
+        final JwtUserDto jwtUserDto = (JwtUserDto) authentication.getPrincipal();
+        // 保存在线信息
+        onlineUserService.save(jwtUserDto, token, request);
+        // 返回 token 与 用户信息
+        Map<String, Object> authInfo = new HashMap<String, Object>(2) {{
+            put("token", properties.getTokenStartWith() + token);
+            put("user", jwtUserDto);
+        }};
+        if (loginProperties.isSingleLogin()) {
+            //踢掉之前已经登录的token
+            onlineUserService.checkLoginOnUser(authUser.getUsername(), token);
+        }
+        return ResponseEntity.ok(authInfo);
+    }
+
     @ApiOperation("获取用户信息")
     @GetMapping(value = "/info")
     public ResponseEntity<Object> getUserInfo() {

+ 3 - 3
eladmin-system/src/main/resources/config/application-dev.yml

@@ -7,9 +7,9 @@ spring:
 #      url: jdbc:log4jdbc:mysql://${DB_HOST:localhost}:${DB_PORT:3306}/${DB_NAME:eladmin}?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false
 #      username: ${DB_USER:root}
 #      password: ${DB_PWD:123456}
-      url: jdbc:log4jdbc:mysql://10.23.39.230:13306/dm_envmonitor?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false
-      username: dm_envmonitor
-      password: V24U7Khu
+      url: jdbc:log4jdbc:mysql://101.133.214.75:3306/dm_envmonitor?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false
+      username: usky
+      password: Yt#75Usky
       # 初始连接数
       initial-size: 5
       # 最小连接数