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:23] – [App Settings] dirk | unraid:dockers:tomcat [2023/08/20 20:14] (current) – [Add football season] dirk | ||
|---|---|---|---|
| Line 33: | Line 33: | ||
| ln -sf / | ln -sf / | ||
| etc</ | etc</ | ||
| - | * If webinf files need to be compiled:< | + | * 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;</ | ||
| + | |||