如何避免向我的数据库添加空的用户名和密码?

How to avoid adding empty username and password to my database?

当我尝试使用空的用户名和密码测试我的添加用户方法时。它仍然在没有用户名和密码的情况下将用户添加到我的数据库中。我如何检查我的用户名 ||密码为空?

我试过这个:

public boolean addUser(String userName, String password) throws Exception {
        //Checking if the username or password are empty
        if(userName == null || password == null) {
            throw new IllegalArgumentException("username or password can't be empty");
        }

        String sql = "insert into user(username,password) values(?,?) ";

但这行不通。

您的字符串可能是“空”字符串或包含白色 space(即 spaces),这可能会导致它失败。

而是使用类似的东西:

if(userName == null || userName.isBlank()) 
{
    throw new IllegalArgumentException("username can't be empty");
}

// repeat test for password

你可以这样试试

if(userName == null || password == null || userName.isBlank() || password.isBlank()) 
{
throw new IllegalArgumentException("Username or Password can't be empty"); 
}