This question already has answers here:
Access restriction on class due to restriction on required library rt.jar?

(15个答案)



Access restriction: Is not accessible due to restriction on required library ..\jre\lib\rt.jar

(10个回答)


5年前关闭。





我试图了解如何使用Spring JDBC框架。

我在http://www.tutorialspoint.com/spring/spring_jdbc_example.htm上找到了示例,并尝试在自己的项目中实现。

这是我的例子

package test;

import javax.sql.DataSource;
import org.springframework.jdbc.core.JdbcTemplate;

public class TestJDBCTemplate {
       private DataSource dataSource;
       private JdbcTemplate jdbcTemplateObject;

       public void setDataSource(DataSource dataSource) {
          this.dataSource = dataSource;
          this.jdbcTemplateObject = new JdbcTemplate(dataSource);
       }

}


但是我有问题

import javax.sql.DataSource


访问限制:类型“ DataSource”不是API(对必需的库“ C:\ Program Files(x86)\ Java \ jre1.8.0_31 \ lib \ rt.jar”的限制)

此导入有什么问题以及如何修复。
我在有关Spring JDBC框架的所有示例中都已经看到了这种导入。

最佳答案

在Eclipse中转到构建项目的路径设置。删除JRE系统库。再次添加。这应该可以解决您的错误。

10-06 06:04