JAVA
听风又看雨
感谢你长得好看,还肯为我点赞
展开
-
JAXB解析xml节点既有属性又有值
JAXB解析xml节点,字符串类型节点属性及值的获取方法原创 2023-02-08 12:10:24 · 332 阅读 · 0 评论 -
List排序问题
首先按部门进行排序,如果部门相同,则按ID进行排序。Collections.sort(list,Comparator.comparing(Users::getDept).thenComparing(Users::getId));原创 2022-02-15 17:05:41 · 346 阅读 · 1 评论 -
JAVA获取当前时间(yyyy-MM-dd HH:mm:ss)
Date date = new Date();SimpleDateFormat dtf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String last_time = dtf.format(date);原创 2022-02-15 16:52:26 · 3500 阅读 · 1 评论 -
NCC restful接口笔记
ncc 发布restful接口如环境中没有启用uapws模块,添加vm参数:-Duap.hotwebs=lfw,portal,fs,uapws1、新建组件模块及接口类,继承AbstractUAPRestResourcepackage nc.kq.md.rest;import javax.ws.rs.Consumes;import javax.ws.rs.POST;import javax.ws.rs.GET;import javax.ws.rs.Path;import javax.ws原创 2021-12-02 13:46:23 · 2076 阅读 · 1 评论 -
关于Smartbi配置Sql Server数据源调用HTTP请求
关于Smartbi配置Sql Server数据源调用HTTP请求 要求利用存储过程调用http接口,并返回报表!笔记 1、开启Sql Server通讯配置sp_configure 'show advanced options', 1;GORECONFIGURE;GOsp_configure 'Ole Automation procedures', 1;GORECONFIGURE;GOexec sp_configure 'Ole Automation Procedures';GO原创 2020-06-05 16:18:28 · 1671 阅读 · 0 评论