java
尘辰晨
这个作者很懒,什么都没留下…
展开
-
后台数据在前台页面显示时实现分页
Dao层代码public interface AttachmentDao { List<AttachmentExtends> selectAttachmentList();}Service层代码@Servicepublic class AttachmentServiceImp implements AttachmentService { @Autowire...原创 2019-08-28 19:04:03 · 1440 阅读 · 0 评论 -
页面数据导入到Excel
首先需要添加依赖,这里4.1.0版本方便下面设置下载的文件名<!--导出到Excel--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-excelant</artifactId> <vers...原创 2019-08-28 21:48:28 · 429 阅读 · 0 评论 -
导入Excel数据到后台
需要的依赖<!--导出到Excel--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-excelant</artifactId> <version>3.17</version&g...原创 2019-08-28 21:53:24 · 591 阅读 · 0 评论 -
Tomcat报错处理,关于下载时逗号不能识别
错误:Invalid character found in the request target. The valid characters are defi解决方法:打开tomcat路径中的conf文件夹,修改server.xml中的内容<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1"...转载 2019-08-30 11:51:58 · 250 阅读 · 0 评论