Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
kelvinsuen cc84a4ec29 update project name 1 anno fa
gradle/wrapper first commit 1 anno fa
src first commit 1 anno fa
.gitignore first commit 1 anno fa
README.md added readme 1 anno fa
build.gradle first commit 1 anno fa
gradlew first commit 1 anno fa
gradlew.bat first commit 1 anno fa
settings.gradle update project name 1 anno fa

README.md

Backend readme

  1. Create a schema named “tsmsdb” in MySQL workbench
  2. Put the launch.json file into the .vscode folder
  3. Put the settings.json file into the .vscode folder
  4. Run and Debug “Launch Local”

launch.json

{
    "version": "0.2.0",
    "configurations": [
      {
        "type": "java",
        "name": "TsmsApplication",
        "request": "launch",
        "mainClass": "com.ffii.tsms.TsmsApplication",
        "projectName": "TSMS-backend"
      },
      {
        "type": "java",
        "name": "Launch Local",
        "request": "launch",
        "mainClass": "com.ffii.tsms.TsmsApplication",
        "console": "internalConsole",
        "projectName": "TSMS-backend",
        "args": "--spring.profiles.active=db-local,ldap-local"
      }
    ]
}

settings.json

You may need to change some settings depending on your development environment

{
    "java.configuration.updateBuildConfiguration": "interactive",
    "java.jdt.ls.java.home": "C:\\java\\jdk-17.0.8",
    "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
}