zhouhao fbd2a0d4e2 3.0.3 release 6 yıl önce
..
src 56fcd4e3d2 优化异常提示 6 yıl önce
README.md e63cb07adf 增加starter的说明 6 yıl önce
pom.xml fbd2a0d4e2 3.0.3 release 6 yıl önce

README.md

应用基本信息配置

hsweb:
    app:
      name: my-application
      comment: 我的应用
      version: 1.0.0
      auto-init: true # 启动服务时进行初始化(执行classpath*:/hsweb-starter.js)

跨域设置

修改application.yml

hsweb: 
    cors:
      enable: true
      allowed-headers: "*"
      allowed-methods: "*"
      allowed-origins: "*"
      allow-credentials: true
      max-age: 14400

json序列化配置

fastjson:
    features: WriteNullListAsEmpty,WriteNullNumberAsZero,WriteNullBooleanAsFalse