|
12345678910111213141516171819202122232425262728293031323334 |
- JAVA version : Openjdk 17 (jdk-17.0.2)
-
- For launch.json:
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "java",
- "name": "FhsmsCApplication",
- "request": "launch",
- "mainClass": "com.ffii.fhsmsc.FhsmsCApplication",
- "projectName": "FhsmsC"
- },
- {
- "type": "java",
- "name": "Launch Local",
- "request": "launch",
- "mainClass": "com.ffii.fhsmsc.FhsmsCApplication",
- "console": "internalConsole",
- "projectName": "",
- "args": "--spring.profiles.active=db-local,local"
- }
- ]
- }
-
- #########################
- For build war
- 1. run .\gradlew clean build
- 2. go to path: .\build\libs
- 3. copy war to Tomcat server
-
|