您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
[email protected] 1c1eadc71d alter for the BOM sync finding PP purchase order supplier and also others for supplier id by code 1周前
.cursor/rules added isExtra and sync extra DO from m18 1 个月前
docs Refining the PO stock in report 3 个月前
gradle/wrapper initial commit 1年前
python Bag3 1周前
src alter for the BOM sync finding PP purchase order supplier and also others for supplier id by code 1周前
.gitignore pick record download + precondition checking 1周前
AGENTS.md added some purchase chart 2 个月前
README.md tsms to fpsms 1年前
build.gradle gradlew bootRun 3 个月前
deployLocal.bat auto gen jo in schedule 6 个月前
gradle.properties A4 printer routing & register, new col "brand" is added to printer table, plz fill in with 'Zebra', 'Canon' or 'Brother' to make it works 3 个月前
gradlew initial commit 1年前
gradlew.bat initial commit 1年前
settings.gradle dependency for kotlin 1年前

README.md

FPSMS Backend

Getting started

  1. Create a schema named fpsmsdb in MySQL workbench
  2. Create a launch.json file and put it into the .vscode folder
{
    "version": "0.2.0",
    "configurations": [
      {
        "type": "java",
        "name": "FpsmsApplication",
        "request": "launch",
        "mainClass": "com.ffii.fpsms.fpsmsApplication",
        "projectName": "FPSMS-backend"
      },
      {
        "type": "java",
        "name": "Launch Local",
        "request": "launch",
        "mainClass": "com.ffii.fpsms.fpsmsApplication",
        "console": "internalConsole",
        "projectName": "FPSMS-backend",
        "args": "--spring.profiles.active=db-local,ldap-local"
      }
    ]
}
  1. Create a settings.json file and put it into the .vscode folder (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"
}
  1. Run and Debug “Launch Local”

Using gradle

This project can also be run using gradle.

Running the application

After creating the table in MySQL, run

./gradlew bootRun --args='--spring.profiles.active=db-local'