First off, I don't like the solution that involves creating a new User object and then calling checkUsername() on it for several reasons:
- If no valid user exists with a given username, you shouldn't have any
User object representing that user... because they don't exist. This isn't a hard and fast rule, since sometimes you might want a User object representing a user you're about to create or some such, but here I find it unnatural.
- It violates expectations about what data objects can do. Creating a
new User() and then having checkUsername() return different values depending on what username that user is given would be surprising.
Now, I know you're in a class and so this may go beyond what you're learning, but to go even further:
Neither solution seems very good to me because both tightly couple any code that uses them to the database, making that code difficult to test.
The general solution to this is to wrap the code that would make components that use it difficult to test in an interface, something like this:
public interface UserService {
boolean checkUsername(String username);
...
}
Then you can create an implementation of UserService that talks to the database, and classes that need to use that code can have an implementation of it injected in their constructors:
public class UserServiceClient {
private final UserService userService;
public UserServiceClient(UserService userService) {
this.userService = userService;
}
...
}
This is the principle of dependency injection. In addition to just making your code more flexible, it allows you to provide fake implementations of UserService for testing. If you want to test what happens in a certain class when checkUsername returns true and what happens when it returns false, you can just use fake implementations that always return true or always return false. You don't have to worry about setting up database connections or ensuring that the right data is present or ensuring that the database state is properly reset after a test, and equally importantly a test is far faster when it doesn't have to do database communication.
Another thing you might want to do that falls somewhere in between the two approaches would be to have a User object that stores data on a user (but can't communicate with the database or any such thing itself) and to put a method like this in your UserService:
User getUser(String username);
This method would return the User object for the user with the given username if one existed and null otherwise. You could also implement checkUsername as just
return getUser(username) != null;