我必须在我的申请表中创建一个表格来申请预约。我正在使用javamail发送信息。我不知道如何保护我的密码。我应该在数据库中存储哈希密码吗?
session=Session.getDefaultInstance(prop, new Authenticator(){
protected PasswordAuthentication getPasswordAuthentication(){
return new PasswordAuthentication("user","password");
}