acciente / oacc-core

OACC (Object ACcess Control) is an advanced Java Application Security Framework
http://oaccframework.org/
Apache License 2.0
107 stars 23 forks source link

Update getting-started-tutorial.html #19

Closed sebfz1 closed 8 years ago

sebfz1 commented 8 years ago

Hi,

The getting-started-tutorial.html is not up-to-date, the correct package in rc4 is com.acciente.oacc.sql.SQLAccessControlSystemInitializer

$ java com.acciente.oacc.SQLAccessControlSystemInitializer -dburl=<db-url> \
>  -dbuser=<db-user> \
>  -dbpwd=<db-password> \
>  -oaccsystempwd=<OACC-root-password> \
>  [ -dbschema=<db-schema> ]   # [optional - omit if no database schema was created]

Thanks, Sebastien.

sebfz1 commented 8 years ago

Therefore the command line is not really accurate, it should likely be: java -cp acciente-oacc-2.0.0-rc.4-jdk1_7.jar com.acciente.oacc.sql.SQLAccessControlSystemInitializer -dburl=... or java -jar acciente-oacc-2.0.0-rc.4-jdk1_7.jar -dburl=... (see #20)

fspinnenhirn commented 8 years ago

Thanks for pointing out the typo, Sebastien! I'm on it.

fspinnenhirn commented 8 years ago

I just updated the tutorial and pushed the change to the live site.