Obsługujesz tylko MySQLIntegrityConstraintViolationException, a nie inne wyjątki:NestedServletException i DuplicateKeyException, a zatem otrzymujesz ślad stosu i próba/chwytanie nie działa.
BTW, dlaczego po prostu nie stworzyć dodatkowej metody, aby sprawdzić, czy nazwa użytkownika jest już obecna, a jeśli tak, wyświetl komunikat o błędzie, w przeciwnym razie dodaj użytkownika.
class UserRepositoryImpl implements UserRepository{
//.....
public int isUsernameExist(String username){
String sql = "SELECT COUNT(*) FROM users WHERE username=?";
return jdbcTemplate.queryForObject(sql, new Object[] { username }, String.class);
}
//....
}
@RequestMapping(value="/register", method=RequestMethod.POST)
public String processRegisterUser(@ModelAttribute("user") User user, BindingResult result){
int status = userRepository.isUserExist(user.getUsername());
if(status==1){
//Username exist... redirect and display error msg.
} else {
userRepository.addUser(user);
}
//.....
}