第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 NamedParameterJdbcTemplate 類型中不適用于參數(shù)

在 NamedParameterJdbcTemplate 類型中不適用于參數(shù)

函數(shù)式編程 2023-03-31 15:28:30
我想通過使用顯示用戶表中的所有數(shù)據(jù)NamedParameterJdbcTemplate,但它不起作用。它顯示此錯(cuò)誤:  The method query(String, SqlParameterSource, ResultSetExtractor<T>) in the   type NamedParameterJdbcTemplate is not applicable for the arguments   (String, new RowMapper<User>(){})報(bào)錯(cuò)圖片: Dao類報(bào)錯(cuò)DAO code:private NamedParameterJdbcTemplate jdbc;@Autowiredpublic void setDataSource(DataSource jdbc) {    this.jdbc = new NamedParameterJdbcTemplate(jdbc);}public List<User> getAllUsers() {    return jdbc.query("select * from user", BeanPropertyRowMapper.newInstance(User.class));}服務(wù)代碼:public List<User> getAllUsers() {    return userDao.getAllUsers();}控制器代碼:@RequestMapping(value="/viewAllUser", method = RequestMethod.GET)public String viewAllUser(Model model) {    List<User>user = userServices.getAllUsers();    model.addAttribute("user", user);    return "viewAllUser";}
查看完整描述

1 回答

?
慕萊塢森

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

似乎您的 jdbcTemplate 找不到具有此類簽名的方法(兩個(gè) param , sqlstring , rowmapper )...并且找不到 map MapSqlParameterSource 參數(shù)


嘗試使用EmptySqlParameterSource.INSTANCEMapSqlParameterSource 參數(shù)(第二個(gè)方法參數(shù))如下


public List<User> getAllUsers() {

    return jdbc.query("select * from user", EmptySqlParameterSource.INSTANCE,

       BeanPropertyRowMapper.newInstance(User.class));


}


查看完整回答
反對(duì) 回復(fù) 2023-03-31
  • 1 回答
  • 0 關(guān)注
  • 279 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)