November 2017
Intermediate to advanced
542 pages
14h 24m
English
We have placed the SQL file containing the expected schema in our resources folder in the same place we did in Chapter 3, Custom Authentication. You can view the schema definition in the following code snippet:
//src/main/resources/schema.sql ... create table persistent_logins ( username varchar_ignorecase(100) not null, series varchar(64) primary key, token varchar(64) not null, last_used timestamp not null ); ...
Read now
Unlock full access