采用file.Transto 来保存上传的文件,代码简单,速度快。 直接上代码: package com.springbootemaildemo.controller; import com.springbootemaildemo.entity.ResponseEntity; import io.s ...
分类:
编程语言 时间:
2020-07-02 00:25:39
阅读次数:
573
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; using ServiceStack.Redis; namespace te ...
分类:
其他好文 时间:
2020-07-01 09:36:28
阅读次数:
65
报错信息: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application c ...
public PageInfo Get(string name, int PageIndex = 1, int PagepSize = 3) { PageInfo pg = new PageInfo(); if (name == null) { name=""; } int count = pg.D ...
分类:
其他好文 时间:
2020-06-30 20:25:06
阅读次数:
48
异常: org.springframework.orm.hibernate3.HibernateSystemException: No default constructor for entity Caused by: org.hibernate.InstantiationException: No ...
分类:
其他好文 时间:
2020-06-30 12:50:04
阅读次数:
55
因只有角色名能修改故继续使用创建角色的视图模型 using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Shop.ViewModel { public class CreateEditRo ...
分类:
其他好文 时间:
2020-06-30 10:51:47
阅读次数:
48
准备 实体 @Data @Table(name = "task_apply") @Entity public class TaskApply { @Id @GeneratedValue @Column(name = "apply_id") private Long applyId; private ...
分类:
其他好文 时间:
2020-06-29 23:09:57
阅读次数:
144
遇到问题 在nginx环境下上传大文件报错:Request Entity Too Large(请求实体太大) 问题原因 nginx限制了上传文件的大小 解决问题 修改当前站点nginx配置的server块内容 添加client_max_body_size 200m; 将nginx上传大小限制设置为2 ...
分类:
其他好文 时间:
2020-06-29 23:02:20
阅读次数:
73
在平时开发中经常会看到有些朋友或者同事在写代码时会充斥着各种for,foreach,这种程式代码太多的话阅读性特别差,而且还显得特别累赘,其实在FCL中有很多帮助我们提高阅读感的方法,而现实中很多人不会用或者说不知道,这篇我就跟大家聊一聊。 一:SelectMany 这个方法绝对是提高开发速度的一大 ...
分类:
其他好文 时间:
2020-06-28 18:07:52
阅读次数:
67
1. EntityUtils.toString(entity), EntityUtils流只存在一次,多次访问会报错 解决办法: ...
分类:
其他好文 时间:
2020-06-28 15:05:07
阅读次数:
36