0

我正在尝试在我的 springs 应用程序中查询一个 sql。现在,如果我的代码包含类似 -

String sql="select abc,def from alphabets where character=:charValue";
SqlParameterSource paramMap = new MapSqlParameterSource("charValue","ac");
List li = namedParameterJdbcTemplate.queryForList(sql, paramMap);

现在,当我运行我的应用程序时,这段代码正在抛出:

org.springframework.dao.PermissionDeniedDataAccessException

我已经尝试了所有方法,我觉得在使用 namedParameterJdbcTemplate 查询列表时遇到了问题。任何帮助将不胜感激。谢谢。

4

1 回答 1

2
public class PermissionDeniedDataAccessException
extends DataAccessException

Exception thrown when the underlying resource denied a permission to access a specific element, such as a specific database table.

你有权限访问alphabets表吗?

于 2013-08-20T13:30:26.417 回答