求助:service中get要求key型別必須為string嗎
有一個User model,主鍵是Integer id
service中
public User getUser(Integer id)
{
try {
return (User)jdbcDao.loadModelById(User.class, id);
} catch (Exception e)
{
logger.error(e);
return null;
}
}
listAction正常,但用viewAction?Action=edit&id=1時則會報,service的get方法引數必須是String,將程式碼改為
public User getUser(String id)
{
Integer pid = Integer.valueof(id);
try {
return (User)jdbcDao.loadModelById(User.class, pid);
} catch (Exception e)
{
logger.error(e);
return null;
}
}
則會報型別不匹配。
service中
public User getUser(Integer id)
{
try {
return (User)jdbcDao.loadModelById(User.class, id);
} catch (Exception e)
{
logger.error(e);
return null;
}
}
listAction正常,但用viewAction?Action=edit&id=1時則會報,service的get方法引數必須是String,將程式碼改為
public User getUser(String id)
{
Integer pid = Integer.valueof(id);
try {
return (User)jdbcDao.loadModelById(User.class, pid);
} catch (Exception e)
{
logger.error(e);
return null;
}
}
則會報型別不匹配。
[該貼被ccj於2007-11-27 19:02修改過]
相關文章
- 玩家要求登出遊戲賬號,遊戲公司必須配合嗎?遊戲
- { [key: string]: any } 是 TypeScript 中的一種型別註解TypeScript型別
- BigDecimal轉為String型別、int型別Decimal型別
- 理解AngularJS中的Service型別AngularJS型別
- C中int main()必須reture一個值嗎AI
- 求助:windows啟動時卡住,必須重啟……(轉)Windows
- java中判斷String型別為空和null的方法Java型別Null
- String 型別型別
- 必須學習RMI,IIOP嗎??
- jsp頁面number型別自動轉為String型別JS型別
- 測試必須學spring RESTful Service(上)SpringREST
- 測試必須學 spring RESTful Service (上)SpringREST
- List<Integer>裡有可能存String型別元素嗎?型別
- hash_map中string為key的解決方法
- Java中Switch支援String字串?為什麼不支援long型別?Java字串型別
- react 報錯 元素隱式具有 "any" 型別,因為型別為 "string" 的表示式不能用於索引型別 "{}"。 在型別 "{}" 上找不到具有型別為 "string" 的引數的索引簽名。React型別索引
- ruby **option作為函式引數,map的key必須是符號函式符號
- 探討丨傳統行業必須數字化轉型嗎?行業
- String:字串型別字串型別
- python必須安裝pip嗎Python
- Redis中String型別常用命令Redis型別
- jquery中$.get()提交和$.post()提交有區別嗎?jQuery
- mybatis sql String>Double, 型別引數被強轉為數值型別MyBatisSQL型別
- javascript型別系統——字串String型別JavaScript型別字串
- 基類中定義的虛擬函式,子類中必須要覆蓋嗎?為什麼?函式
- service型別及功能簡介+pod型別型別
- ?你必須知道的Java泛型Java泛型
- svn 要求commit提交必須加註釋(日誌) hookMITHook
- C++中string轉換為char*型別返回後亂碼問題C++型別
- WHRER條件裡的資料型別必須和欄位資料型別一致資料型別
- Net任意String格式轉換為DateTime型別型別
- mysql建表必須使用主鍵嗎MySql
- 反思|分散式框架是必須的嗎?分散式框架
- 全面解析Java中的String資料型別Java資料型別
- string型別介紹型別
- php中物件是引用型別嗎?PHP物件型別
- 日期型別與String型別的轉換型別
- Java中String和byte型別互相轉換Java型別