This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| unraid:dockers:tomcat [2023/03/12 20:22] – [App Settings] dirk | unraid:dockers:tomcat [2023/08/20 20:14] (current) – [Add football season] dirk | ||
|---|---|---|---|
| Line 30: | Line 30: | ||
| * Install the debfile:< | * Install the debfile:< | ||
| * Create symlink for connector< | * Create symlink for connector< | ||
| - | * In reality, all you need are the .jar files and keep them in the appdata somewhere mapped... then just symlink those into the / | + | * In reality, all you need are the .jar files and keep them in the appdata somewhere mapped... then just symlink those into the / |
| - | * If webinf files need to be compiled:< | + | ln -sf / |
| + | etc</ | ||
| + | * If webinf files need to be compiled:< | ||
| * Note: this step is different from Tomcat v9 in VM because paths are different. | * Note: this step is different from Tomcat v9 in VM because paths are different. | ||
| * Note2: MUST CHANGE import javax.servlet.* to import jakarta.servlet.* in all the .java files under the WEB-INF folder before compiling with above. | * Note2: MUST CHANGE import javax.servlet.* to import jakarta.servlet.* in all the .java files under the WEB-INF folder before compiling with above. | ||
| * Restart | * Restart | ||
| + | |||
| + | ==== Add football season ==== | ||
| + | < | ||
| + | < | ||
| + | use DB; | ||
| + | LOAD DATA LOCAL INFILE " | ||
| + | UPDATE games_nfl SET vscore = NULL where year = 2023; | ||
| + | UPDATE games_nfl SET hscore = NULL where year = 2023;</ | ||
| + | |||