gpt4 book ai didi

Spring Security 创建一个名为 USERS 的表

转载 作者:行者123 更新时间:2023-12-02 15:23:20 24 4
gpt4 key购买 nike

启动我的应用程序时,Spring Security 在我的 h2 数据库中创建了两个表“users”和“authorities”。我的问题是,当我第二次启动应用程序时,数据库中已经填充了这两个表,但是 Spring Security till 想要创建它们。如果表不存在,我如何告诉 Spring Secutiry 只创建表?或者我应该改变其他东西来解决这个问题?

Spring Secutiry 正在创建我从博客中获得的两个表,这些表描述了我看过的一些代码。它说:“关于数据模型的一些注释。USERS 表中没有存储真实的用户名和密码。该表由 Spring Security 定义,用于一般用途,并不特定于社交登录用例。”

Link to the blog

我得到的错误消息,一些 java 堆栈跟踪,是:

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement at line 1 of resource class path resource [org/springframework/security/core/userdetails/jdbc/users.ddl]: 
create table users(username varchar_ignorecase(50) not null primary key,password varchar_ignorecase(500) not null,enabled boolean not null); nested exception is org.h2.jdbc.JdbcSQLException: Table "USERS" already exists;
SQL statement: create table users(username varchar_ignorecase(50) not null primary key,password varchar_ignorecase(500) not null,enabled boolean not null) [42101-175]

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement at line 1 of resource class path resource [org/springframework/security/core/userdetails/jdbc/users.ddl]:    
create table users(username varchar_ignorecase(50) not null primary key,password varchar_ignorecase(500) not null,enabled boolean not null); nested exception is org.h2.jdbc.JdbcSQLException: Table "USERS" already exists;
SQL statement: create table users(username varchar_ignorecase(50) not null primary key,password varchar_ignorecase(500) not null,enabled boolean not null) [42101-175]

我不确定代码中发生这种情况的位置。我有一个看起来像这样的 entityManageFactory

@Autowired DataSource dataSource;
@Bean
public EntityManagerFactory entityManagerFactory() {
HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
vendorAdapter.setGenerateDdl(true);
Properties props = new Properties();
props.put("hibernate.dialect", H2Dialect.class.getName());
props.put("hibernate.format_sql", "true");
props.put("spring.jpa.properties.hibernate.hbm2ddl.auto", "update");
props.put("spring.datasource.dbCreate", "update");
LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean();
factory.setJpaVendorAdapter(vendorAdapter);
factory.setPackagesToScan("mypackage.demo");
factory.setDataSource(dataSource);
factory.setJpaProperties(props);
factory.afterPropertiesSet();

return factory.getObject();
}

最佳答案

USERS 表(和其他一些表)是在我配置 Spring Security 时创建的。这是该代码的一部分:

public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

@Autowired
private DataSource dataSource;

@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.
jdbcAuthentication()
.dataSource(dataSource)
.withDefaultSchema();
}

如果我从一个已经存在的数据库开始,该数据库已配置并在其中部署了数据,我会删除该行:

      .withDefaultSchema(); 

Spring Security 将使用数据库中的现有表。

关于Spring Security 创建一个名为 USERS 的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33402489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com