Esempio n. 1
0
 @Override
 public User findUser(String id) {
   Integer it_id = Integer.parseInt(id);
   try {
     return userMapper.selectByPrimaryKey(it_id);
   } catch (Exception e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
     return null;
   }
 }