在我的Web应用程序中(如spring boot)。我正在使用H2数据库。 对于每个用户,我需要组织对数据库的访问。我是通过h2网络控制台完成此操作的。
有我的application.properties文件。
server.port=8081
#server.contextPath=/
# Datasource
spring.datasource.url=jdbc:h2:mem:testdb3;DB_CLOSE_DELAY=-1
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.platform=h2
spring.datasource.initialize=true
#datasource.schema=classpath:schema.sql
#datasource.data=classpath:data.sql
我需要为每个用户传递一个登录密码,这样他就无需手动输入数据。
如何为每个用户将登录名和密码转移到Web控制台页面?