Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -370,4 +370,4 @@ to the `middleware()` call:

==== Complete example

A complete example using the Node.js adapter usage can be found in {quickstartRepo_link}/tree/latest/service-nodejs/[Keycloak quickstarts for Node.js]
A complete example using the Node.js adapter usage can be found in {quickstartRepo_link}/tree/latest/nodejs/resource-server[Keycloak quickstarts for Node.js]
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ There are two sample projects in link:{quickstartRepo_link}[{quickstartRepo_name
|===
|Name |Description

| {quickstartRepo_link}/tree/latest/user-storage-jpa[user-storage-jpa]
| {quickstartRepo_link}/tree/latest/extension/user-storage-jpa[user-storage-jpa]
| Demonstrates implementing a user storage provider using EJB and JPA.

| {quickstartRepo_link}/tree/latest/user-storage-simple[user-storage-simple]
| {quickstartRepo_link}/tree/latest/extension/user-storage-simple[user-storage-simple]
| Demonstrates implementing a user storage provider using a simple properties file that contains username/password key pairs.

|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Providers implementations are required to be plain java objects which implement

You can still implement your custom `UserStorageProvider` class, which is able to integrate an external database by JPA Entity Manager, as shown in this example:

- {quickstartRepo_link}/tree/latest/user-storage-jpa
- {quickstartRepo_link}/tree/latest/extension/user-storage-jpa

CDI is not supported.