如何在 Jhipster 中禁用 authenticationType?
How to disable authenticationType in Jhipster?
我想没有authenticationType
,在最终的微服务中,我如何在JDL中实现?
如何定义不认证?
application {
config {
baseName AweseomApp,
applicationType microservice,
packageName com.example,
authenticationType jwt,
prodDatabaseType postgresql
}
entities *
service * with serviceClass
}
entity Cars {
name String
}
JDL 或问题是不可能的。
您必须在微服务和网关的 SecurityConfiguration class 中手动修改生成的代码。
请参阅 示例。
或者您可以提交类似于“无数据库”选项的功能请求并提议贡献它。
我想没有authenticationType
,在最终的微服务中,我如何在JDL中实现?
如何定义不认证?
application {
config {
baseName AweseomApp,
applicationType microservice,
packageName com.example,
authenticationType jwt,
prodDatabaseType postgresql
}
entities *
service * with serviceClass
}
entity Cars {
name String
}
JDL 或问题是不可能的。
您必须在微服务和网关的 SecurityConfiguration class 中手动修改生成的代码。
请参阅
或者您可以提交类似于“无数据库”选项的功能请求并提议贡献它。