登陸注冊頁面,網上找的struts教程,不懂省略部分是什麼?應該怎麼寫圖片說明](https://www.aspphp.online/bianchen/UploadFiles_4619/201701/2017010614190543.png)
省略的是username和password的get/set方法,用eclipse的話可以自動生成
即
public String getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
public String getPassword()
{
return password;
}
public void setPassword(String password)
{
this.password = password;
}