Here I found a simple vertx
project that uses apache-shiro
for auth.
Here the user informations are stored inside src/main/resources/vertx-users.properties
file like this:
user.tim = sausages,morris_dancer,developer,vtoons
role.developer=do_actual_work
role.vtoons=place_order
Is this a good approach to store user name and password in a file? Can we store these information in encrypted format or anywhere in a database. Can apache-shiro
access these info from a db?
Please provide if you have some sample projects