当前位置: 首页 > 知识库问答 >
问题:

.HSQLException:用户缺乏权限或找不到对象

艾和通
2023-03-14
org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement
(stacktrace)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: PUBLIC.T_AUTHORITY
(stacktrace)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: PUBLIC.T_AUTHORITY
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(basePackages = "org.jason.application.repository.jpa",
        entityManagerFactoryRef = "entityManagerFactoryBean")
public class ApplicationPersistenceConfig {

    @Bean
    public JpaTransactionManager transactionManager(EntityManagerFactory emf) {

        JpaTransactionManager jpaTransactionManager = new JpaTransactionManager();
        jpaTransactionManager.setEntityManagerFactory(emf);
        return jpaTransactionManager;
    }

    @Bean
    public LocalContainerEntityManagerFactoryBean getEntityManagerFactoryBean(DataSource dataSource) {

        LocalContainerEntityManagerFactoryBean entityManagerFactory = new LocalContainerEntityManagerFactoryBean();

        entityManagerFactory.setPersistenceUnitName("default");
        entityManagerFactory.setDataSource(dataSource);
        entityManagerFactory.setJpaVendorAdapter(new HibernateJpaVendorAdapter());
        entityManagerFactory.setJpaDialect(new HibernateJpaDialect());
        entityManagerFactory.setPackagesToScan("org.jason.application.repository.model");

        entityManagerFactory.setJpaPropertyMap(hibernateJpaProperties());

        return entityManagerFactory;
    }

    @Bean
    public DataSource getDataSource() {

        BasicDataSource dataSource = new BasicDataSource();
        dataSource.setDriverClassName("org.hsqldb.jdbcDriver");
        dataSource.setUrl("jdbc:hsqldb:mem:testdb");
        dataSource.setUsername("sa");
        dataSource.setPassword("");
        return dataSource;
    }

    private Map<String, ?> hibernateJpaProperties() {

        HashMap<String, String> properties = new HashMap<>();
        properties.put("hibernate.hbm2ddl.import_files", "insert-data.sql");
        properties.put("hibernate.hbm2ddl.auto", "create-drop");
        properties.put("hibernate.show_sql", "false");
        properties.put("hibernate.format_sql", "false");
        properties.put("hibernate.ejb.naming_strategy", "org.hibernate.cfg.ImprovedNamingStrategy");
        properties.put("hibernate.dialect", "org.hibernate.dialect.HSQLDialect");
        properties.put("hibernate.c3p0.min_size", "2");
        properties.put("hibernate.c3p0.max_size", "5");
        properties.put("hibernate.c3p0.timeout", "300"); // 5mins

        return properties;
    }
}
  CREATE TABLE PUBLIC.T_USER (
    USERID  INTEGER NOT NULL PRIMARY KEY,
      USERNAME VARCHAR_IGNORECASE(50) NOT NULL,
      PASSWORD VARCHAR_IGNORECASE(50) NOT NULL,
      ENABLED BOOLEAN NOT NULL,
    CREATE UNIQUE INDEX IX_USERNAME ON T_USER(USERNAME);

  CREATE TABLE PUBLIC.T_AUTHORITY (
    AUTHORITYID INTEGER NOT NULL PRIMARY KEY,
    USERID INTEGER NOT NULL,
--      USERNAME VARCHAR_IGNORECASE(50) NOT NULL,
      AUTHORITY VARCHAR_IGNORECASE(50) NOT NULL,
      CONSTRAINT FK_AUTHORITIES_USERS FOREIGN KEY(USERID) REFERENCES USERS(USERID));
      CREATE UNIQUE INDEX IX_AUTH_USERNAME ON T_AUTHORITY (USERID,AUTHORITY);

INSERT INTO T_USER(USERNAME, PASSWORD, ENABLED) VALUES (1, 'jason','password', true);
INSERT INTO T_AUTHORITY(AUTHORITYID, USERID, AUTHORITY) VALUES (1, 1, "ROLE_ADMIN");

共有1个答案

易修洁
2023-03-14

这是个愚蠢的错误,就像我想的那样。

以下两个hibernate属性彼此不兼容:

    properties.put("hibernate.hbm2ddl.import_files", "insert-data.sql");
    properties.put("hibernate.hbm2ddl.auto", "create-drop");

两者都具有创建模式的效果。

 类似资料:
  • 我有一个Java8、Spring Boot2应用程序,其中JPA实体连接到MS SQL Server数据库。我试图使用HSQLDB(2.3.3)创建集成测试,如果不包括审计信息(创建日期、上次更新等),它可以正常工作。 我知道“类型找不到或用户缺乏特权”错误是一般性的,可能是由各种原因造成的。在本例中,我知道如果不尝试将datetimeoffset列添加到表中,所有内容都将正确运行。 在联机寻找答

  • 我正在尝试做一些Ucanaccess实践,用Java管理一些数据库。我得到了一个我不知道如何解决的错误。 我在Access中有一个名为USERS的表: 自动编号,短文本,短文本,数字。 代码继续,但只有一些条件和查询。

  • 当我试图将数据放入数据库时,我出现了一个错误,这是我的注册函数

  • 我试图用外键将一个元组从输入关系INPUTRel插入到源关系uk_rd_penst中,然后更新目标关系uk_status的元组。UK_Status和UK_RD_POSTAD具有主键-外键关系。 以下是参数:inputrel:TransId,Company,ICB_Code,RD2008 uk_rd_peston:Company,ICB_Code,RD_spend_2008 uk_status:Co

  • 我正在测试的功能在生产环境中工作得很好,但我不知道为什么在测试时不是这样。 下面是引发错误的测试函数: 我的测试: null

  • 我正在看一些旧代码,在运行一个单元测试时遇到了问题。 代码为: 但是,当试图准备语句时,它会抛出错误 用户缺少权限或找不到对象:CUSTOMERS_SEQ。下一个瓦尔。 我正在阅读错误本身,似乎找不到任何东西。奇怪的是,当我在本地运行查询选择CUSTOMERS_SEQ.NEXTVAL时,它工作正常。 任何和所有的帮助将不胜感激。