一切福田,不離方寸,從心而覓,感無不通。

Category Archives: Programming Language

后台LocalDateTime参数的接收问题(Failed to convert value of type ‘java.lang.String‘ to required type ‘java.tim

@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")

龙生   06 Dec 2024
View Details

.net webapi .net core 统一时间返回格式, .net core 2.0, .net core 3.1

在用 webapi 或者.net core 写接口时, 我们的时间类型往往是 datetime类型的, 如果直接返回, 前端拿到的结果往往这样这种格式 : 下面讲怎么改成我们想要的格式 webapi 在WebApiConfig.cs文件里的Register方法添加如下代码, 在接口返回的时候要用 ok(object) 这种格式.

.net core 2.X 在 Startup.cs 文件里 的 ConfigureServices的 AddMvc 追加下面的代码

.net core 3.x 升级到.net core 3.0 以后,不在默认包含 NewtonsoftJson,而是默认使用System.Text.Json. 我们可以定义一个继承 System.Text.Json.Serialization.JsonConverter 的类,实现其Read 和 Write两个抽象方法. 然后再使用

然后再 ConfigureServices 里添加

 .net core 3.x 使用 NewtonsoftJson序列化后 刚刚提到.net core 3.0以后序列化默认是使用System.Text.Json. 但是由于这个实在是不好用, 所以可以改回NewtonsoftJson,之后修改时间格式如下

  from: https://www.cnblogs.com/fancyblogs/p/12936939.html

龙生   06 Dec 2024
View Details

.net生产WebService代理类

.netcore dotnet-svcutil -o d:\HisService.cs http://xxxx/Service.asmx?wsdl   framework wsdl /language:c# /n:命名空间 /out:c:/WebServiceForAutoOrder.cs http://{url}/hisOrderReal/WebServiceForAutoOrder.asmx?WSDL

龙生   25 Nov 2024
View Details

解决.Net Core中文被编码问题

//解决中文被编码
services.AddSingleton(HtmlEncoder.Create(UnicodeRanges.All));

龙生   23 Nov 2024
View Details

LazyCaptcha

LazyCaptcha是仿EasyCaptcha和SimpleCaptcha,基于.Net Standard 2.1的图形验证码模块。

龙生   20 Nov 2024
View Details

HttpServletRequest 对象通过以下方法来获取请求路径

  from:https://www.cnblogs.com/zhoading/p/13954370.html

龙生   20 Nov 2024
View Details

Java判断文件或者文件夹是否存在的方法

// 指定文件或文件夹的路径
Path path = Paths.get("path/to/your/file_or_directory");

// 检查路径是否存在,并且是一个文件(不是文件夹)
boolean isFile = Files.exists(path, LinkOption.NOFOLLOW_LINKS) && Files.isRegularFile(path);

// 检查路径是否存在,并且是一个文件夹(不是文件)
boolean isDirectory = Files.exists(path, LinkOption.NOFOLLOW_LINKS) && Files.isDirectory(path);

龙生   20 Nov 2024
View Details

Asp.Net Core3.1 设置时间序列化格式,自定义时间格式,设置属性忽略 设置属性别名

[JsonConverter(typeof(DateConverter))]
public DateTime Date { get; set; }
——————————————————————————————
public class DateConverter : JsonConverter
{
public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
if (reader.TokenType == JsonTokenType.String)
{
if (DateTime.TryParse(reader.GetString(), out DateTime date))
return date;
}
return reader.GetDateTime();
}

public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options)
{
writer.WriteStringValue(value.ToString("yyyy-MM-dd"));
}
}

龙生   18 Nov 2024
View Details

sqlsugar 不映射字段,sqlsugar 忽略字段。sqlsugar 字段改名。

sqlsugar 不映射字段,sqlsugar 忽略字段。 利用特性SugarColumn,将IsIgnore设置为True即可!

  这样Sqlsugar 增删改查数据库的时候自动跳过该字段,但是操作实体的时候依然可以访问到该字段,进行赋值或取值。 在SqlSugar中,如果你需要修改一个实体类的属性映射到数据库的字段名,你可以 使用SugarColumn属性,将ColumnName设为数据库里的的列名即可。

  这样Sqlsugar 增删改查数据库的时候数据库列名为“NameOfStudent”,但是操作实体的时候属性的名称是Name。   from:https://blog.csdn.net/djk8888/article/details/141600690

龙生   18 Nov 2024
View Details

Java ResponseEntity乱码 javaee出现乱码怎么解决

* * 设置浏览器打开文件所采用的编码
* response.setHeader("Content-Type", "text/html;charset=UTF-8");
* * 简写方式
* response.setContentType("text/html;charset=UTF-8");

龙生   13 Nov 2024
View Details
1 2 175