Skip to content

Commit

Permalink
Merge pull request #37771 from jcarranzan/tweaks-security-jdbc-adoc
Browse files Browse the repository at this point in the history
Docs: security-jdbc guide linking user entity section where is used built-in bcrypt password mapper
  • Loading branch information
sberyozkin authored Dec 15, 2023
2 parents bbef09f + 73c6bbb commit 0b2706f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public class UserResource {
}
----
====

[[define-the-user-entity]]
=== Define the user entity

* You can now describe how you want security information to be stored in the model by adding annotations to the `user` entity, as outlined in the following code snippet:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/security-jdbc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ INSERT INTO test_user (id, username, password, role) VALUES (2, 'user','user', '
[NOTE]
====
It is probably useless, but we kindly remind you that you must not store clear-text passwords in production environment ;-).
The `elytron-security-jdbc` offers a built-in bcrypt password mapper.
The `elytron-security-jdbc` offers a built-in bcrypt password mapper. You can see the section `Define the user entity` for more details at xref:security-getting-started-tutorial.adoc#define-the-user-entity.
====

We can now configure the Elytron JDBC Realm.
Expand Down

0 comments on commit 0b2706f

Please sign in to comment.