摘要:
public void exportAnalyse(HttpServletResponse response) { //data为行 集合 List<List<String>> data = new ArrayList(); for (int i = 0; i < 10; i++) { //colu 阅读全文
摘要:
xiangmu\ app\ src\ main\ resources fileUpload.resources文件 upload.userId = -1 upload.srcSystem = 131452021 upload.token = vfZQIDAQAB upload.businessId 阅读全文
摘要:
public static void convert(MultipartFile multipartFile) { File file = null; try { String originalFilename = multipartFile.getOriginalFilename(); Strin 阅读全文
摘要:
/** * 注入的注解,为空,仅起标志作用 */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @interface Inject { } /** * 获取 bean 的容器,必通通过容器获取,而不能使用 new,因 阅读全文
摘要:
https://www.cnblogs.com/1012hq/p/11141855.html 启动项目时,报出如下错误,通过错误提示可以看到端口被占用了。 查看日志可以看到被占用的端口为10001 这个问题的解决方案: 打开cmd命令行,执行命令netstat -ano|findstr "10001 阅读全文
摘要:
转自:https://blog.csdn.net/Angel_jn/article/details/108059927 (前端 XMLHttpRequest 实现下载excel文件) const xhr = new XMLHttpRequest(); xhr.open('get', 'http:// 阅读全文
摘要:
描述:在JavaE中使用 BeanUtils.copyProperties,把A对象的name、age等属性复制到B对象中,A与B对象的类型不同。出现的问题是复制属性失败,根本原因是 BeanUtils找不到set、get方法。 import org.springframework.beans.Be 阅读全文
摘要:
1.第一种方式即为代码方式查询比如下面链接这样: https://www.cnblogs.com/zuiniub/p/14568975.html 2、3种方式见下方代码: package com.css.oa.exam.certificate.repository; import org.sprin 阅读全文
摘要:
package com.css.oa.exam.util; import com.css.oa.exam.constants.BoolState; import org.springframework.beans.BeanUtils; import org.springframework.beans 阅读全文
摘要:
//service.java{ } @Override public void batchUpdate(BatchVerifyReq req){ List<Enroll> olds = enrollRepository.findAllById(req.ids);//批量查询 for (Enroll 阅读全文