mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 08:25:53 +08:00
字符串比较错误处理
This commit is contained in:
@@ -84,7 +84,7 @@ public class DeviceController extends BaseController
|
|||||||
public TableDataInfo allShortList(Device device)
|
public TableDataInfo allShortList(Device device)
|
||||||
{
|
{
|
||||||
List<DeviceAllShortOutput> list = new ArrayList<>();
|
List<DeviceAllShortOutput> list = new ArrayList<>();
|
||||||
if(device.getUserName()==null || device.getUserName() == "")
|
if(device.getUserName()==null || device.getUserName().equals(""))
|
||||||
{
|
{
|
||||||
list = deviceService.selectAllDeviceShortList();
|
list = deviceService.selectAllDeviceShortList();
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ public class GroupController extends BaseController
|
|||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
List<Group> list = new ArrayList<>();
|
List<Group> list = new ArrayList<>();
|
||||||
if(group.getUserName() == null || group.getUserName() == "")
|
if(group.getUserName() == null || group.getUserName().equals(""))
|
||||||
{
|
{
|
||||||
// 搜索查询 ,mapper使用的是模糊查询
|
// 搜索查询 ,mapper使用的是模糊查询
|
||||||
list = groupService.selectGroupList(group);
|
list = groupService.selectGroupList(group);
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ public class ThingsModelTemplateController extends BaseController
|
|||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
List<ThingsModelTemplate> list = new ArrayList<>();
|
List<ThingsModelTemplate> list = new ArrayList<>();
|
||||||
if (thingsModelTemplate.getTenantName() == ""|| thingsModelTemplate.getTenantName() == null){
|
if (thingsModelTemplate.getTenantName().equals("")|| thingsModelTemplate.getTenantName() == null){
|
||||||
list = thingsModelTemplateService.selectThingsModelTemplateList(thingsModelTemplate);
|
list = thingsModelTemplateService.selectThingsModelTemplateList(thingsModelTemplate);
|
||||||
}else{
|
}else{
|
||||||
// 精准查询
|
// 精准查询
|
||||||
|
|||||||
@@ -211,7 +211,7 @@ public class ToolController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
private ResponseEntity encryptAuthentication(MqttAuthenticationModel mqttModel, ProductAuthenticateModel productModel) throws Exception {
|
private ResponseEntity encryptAuthentication(MqttAuthenticationModel mqttModel, ProductAuthenticateModel productModel) throws Exception {
|
||||||
String decryptPassword = AESUtils.decrypt(mqttModel.getPassword(), productModel.getMqttSecret());
|
String decryptPassword = AESUtils.decrypt(mqttModel.getPassword(), productModel.getMqttSecret());
|
||||||
if (decryptPassword == null || decryptPassword == "") {
|
if (decryptPassword == null || decryptPassword.equals("")) {
|
||||||
return returnUnauthorized(mqttModel, "设备加密认证,mqtt密码解密失败");
|
return returnUnauthorized(mqttModel, "设备加密认证,mqtt密码解密失败");
|
||||||
}
|
}
|
||||||
String[] passwordArray = decryptPassword.split("&");
|
String[] passwordArray = decryptPassword.split("&");
|
||||||
@@ -229,7 +229,6 @@ public class ToolController extends BaseController {
|
|||||||
return returnUnauthorized(mqttModel, resultMessage);
|
return returnUnauthorized(mqttModel, resultMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mqttPassword.equals(productModel.getMqttPassword())) {
|
if (!mqttPassword.equals(productModel.getMqttPassword())) {
|
||||||
return returnUnauthorized(mqttModel, "设备加密认证,设备mqtt密码错误");
|
return returnUnauthorized(mqttModel, "设备加密认证,设备mqtt密码错误");
|
||||||
}
|
}
|
||||||
@@ -262,7 +261,7 @@ public class ToolController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
private String authCodeProcess(String authCode, MqttAuthenticationModel mqttModel, ProductAuthenticateModel productModel) {
|
private String authCodeProcess(String authCode, MqttAuthenticationModel mqttModel, ProductAuthenticateModel productModel) {
|
||||||
String message = "";
|
String message = "";
|
||||||
if (authCode == "") {
|
if (authCode.equals("")) {
|
||||||
message = "设备认证,设备授权码不能为空";
|
message = "设备认证,设备授权码不能为空";
|
||||||
}
|
}
|
||||||
// 查询授权码是否存在
|
// 查询授权码是否存在
|
||||||
|
|||||||
Reference in New Issue
Block a user