We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da7086 commit a7861ebCopy full SHA for a7861eb
session-handling-spring-security/src/main/resources/data.sql
@@ -0,0 +1,11 @@
1
+INSERT INTO users(username,password,active)
2
+VALUES ('user','$2a$10$uyw4NHXu52GKyc2iJRfyOu/p.jn2IXhibpvYEAO4AXcaTQ0LXBCnq', 1);
3
+
4
5
+VALUES ('admin','$2a$10$7N00PGwYhJ1GT/8zf0KZD.wZhSbFDhs49HEx7wOkORu3q0/zhqyWe', 1);
6
7
+INSERT INTO roles (username, role)
8
+VALUES ('user', 'ROLE_USER');
9
10
+VALUES ('admin', 'ROLE_ADMIN');
11
0 commit comments