If I would like to customize css file in SchemaSpy, how to edit and assign new css file when I re-generate schema document?
How-To
1. Generate schema document firstly and find out the schemaSpy.css file.
2. Edit schemaSpy.css, ex. update background color in odd tr
tr.odd td.detail { background-color: #eaeaea; }
3. Place schemaSpy.css file into specific directory, then assign it into -css parameter:
java -jar "C:\schemaspy\schemaSpy_5.0.0.jar" ^ -dp "C:\schemaspy\ojdbc6.jar" ^ -t orathin ^ -db TEST_DB ^ -s ap_tax ^ -host localhost ^ -port 1521 ^ -u system ^ -p password ^ -schemas "ODS,TS" ^ -charset UTF-8 ^ -o "C:\schemaspy\schema_doc" ^ -norows -hq -css "C:\schemaspy\schemaSpy.css" ^
No comments:
Post a Comment