备注/oauth/token 密码授权请求access_token/oauth/token_key 获取public_key 用于验证jwt的无篡改性修改不支持swagger-ui ,暂时关闭csrf1http.csrf().disable();解决Jhipster创建实体后,Gateway数据菜单为空微服务创建完成后,打开网关服务,执行yo jhipster:entity NAME 选择Do you want to generate this entity from an existing microservice? Y
实用sql123456789101112131415161718192021222324252627282930313233343536373839404142/* --输出表中行 */declarecl_loan_row cl_loan%rowtype; begin select * into cl_loan_row from cl_loan where loan_key= '31' and fdate = '20121103';dbms_output.put_line(cl_loan_row.loan_no);end;//* ----复制表的结构 */create table cl_loan_bak as select * from cl_loan where rownum < 1select replace(fdate,'20121103','20121102') from cl_l ...