nested exception is java.sql.SQLSyntaxErrorException: ORA-00942: 表或视图不存在

程序运行报错nested exception is java.sql.SQLSyntaxErrorException: ORA-00942: 表或视图不存在
把sql拿出来并添加参数放到数据库里运行可以成功,但是在程序里运行就会报表或视图不存在异常,这是什么原因呢
1.检查数据源是否配置正确,数据库地址,用户名和密码
2.检查表或视图名称是否错误
3.检查程序中用到的数据源的数据库用户是否有访问该表或视图的权限
4.当程序配置多数据源时,要注意使用注解@Qualifier指定表或视图所在的数据源地址

我的问题是使用@Qualifier指定数据源时注解位置错误导致jdbcTemplate构造错误。注解应该放在构造器的参数中。
错误展示:

public class TestRepositoryImpl implements TestRepository {

    @Qualifier("businessJdbcTemplate")
    private JdbcTemplate jdbcTemplate;

    public DepthRepositoryImpl(JdbcTemplate jdbcTemplate) {
        this.jdbcTemplate = jdbcTemplate;
    }
}

正确改法:
方法一:
使用构造器注入

public class TestRepositoryImpl implements TestRepository {

    private JdbcTemplate jdbcTemplate;

    public DepthRepositoryImpl(@Qualifier("businessJdbcTemplate") JdbcTemplate jdbcTemplate) {
        this.jdbcTemplate = jdbcTemplate;
    }
}

方法二:
使用注解注入

public class TestRepositoryImpl implements TestRepository {

    @Qualifier("businessJdbcTemplate")
    @Autowired
    private JdbcTemplate jdbcTemplate;
}

你可能感兴趣的:(oracle,java)