| | |
| | | import com.example.server.user.model.SysUser; |
| | | import com.example.server.user.service.UserService; |
| | | import com.example.server.utils.CacheUtils; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.stereotype.Service; |
| | |
| | | String password = "admin"; |
| | | String site = ""; |
| | | String teamGroup = ""; |
| | | String team = ""; |
| | | |
| | | String path = Login.class.getClassLoader().getResource("config.properties").getPath(); |
| | | InputStream inStream = null; |
| | |
| | | password = properties.get("password").toString(); |
| | | site = properties.get("site").toString(); |
| | | teamGroup = properties.get("teamGroup").toString(); |
| | | team = properties.get("team").toString(); |
| | | } catch (IOException e) { |
| | | e.printStackTrace(); |
| | | }finally { |
| | | } finally { |
| | | if (reader != null) { |
| | | try { |
| | | reader.close(); |
| | |
| | | |
| | | String finalSite = site; |
| | | String finalTeamGroup = teamGroup; |
| | | String finalTeam = team; |
| | | String finalTeamGroup1 = teamGroup; |
| | | loginButton.addActionListener(new ActionListener() { |
| | | @Override |
| | | public void actionPerformed(ActionEvent e) { |
| | |
| | | String str = String.valueOf(password); //将char数组转化为string类型 |
| | | |
| | | |
| | | user = userService.login(name,str); |
| | | user = userService.login(name, str); |
| | | exist = user.getExist(); |
| | | |
| | | Boolean exit2 = true; |
| | | Boolean exit3 = true; |
| | | if (StringUtils.isNotBlank(user.getTeamgroup())) { |
| | | if (StringUtils.isNotBlank(finalTeamGroup1) && !finalTeamGroup1.equals("null")) { |
| | | if (!finalTeamGroup1.contains(user.getTeamgroup())) { |
| | | exit2 = false; |
| | | } |
| | | } |
| | | } |
| | | if (user.getNickName().equals("工作组")){ |
| | | if(!"工作组".equals(finalSite)){ |
| | | exit3 = false; |
| | | } |
| | | } |
| | | |
| | | if (exist) { |
| | | System.out.println("登录成功"); |
| | | if (!exit2) { |
| | | JOptionPane.showMessageDialog(null, "当前机器不支持该专业用户登录", "提示", JOptionPane.WARNING_MESSAGE); |
| | | return; |
| | | } |
| | | if (!exit3) { |
| | | JOptionPane.showMessageDialog(null, "当前机器不支持工作组用户登录", "提示", JOptionPane.WARNING_MESSAGE); |
| | | return; |
| | | } |
| | | try { |
| | | String path = Login.class.getClassLoader().getResource("config.properties").getPath(); |
| | | OutputStream outputStream = null; |
| | |
| | | outputStream = new FileOutputStream(path); |
| | | } else { |
| | | try { |
| | | outputStream = new FileOutputStream("config.properties"); |
| | | outputStream = new FileOutputStream(configPath); |
| | | } catch (FileNotFoundException ex) { |
| | | ex.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | properties.setProperty("userName", name); |
| | | properties.setProperty("password", str); |
| | | properties.setProperty("url", "11"); |
| | | properties.store(outputStream, "rxkj"); |
| | | outputStream.close(); |
| | | } catch (FileNotFoundException ex) { |
| | |
| | | } catch (IOException ep) { |
| | | ep.printStackTrace(); |
| | | } |
| | | |
| | | user.setBoatfleet(finalTeam); |
| | | CacheUtils.put("user", "user", user); |
| | | CacheUtils.put("site", "site", finalSite); |
| | | CacheUtils.put("teamGroup", "teamGroup", finalTeamGroup); |