当前位置: 首页 > wzjs >正文

网站做推广需要到工信部备案吗新网络营销

网站做推广需要到工信部备案吗,新网络营销,web静态网页设计,v9做的网站被攻击链接吧跳转在使用 Spring MVC 开发 Web 应用时,我们经常需要处理从 HTTP 请求(如 URL 参数、表单数据)到 Controller 方法参数的自动转换。这就是 Spring 的数据绑定 (Data Binding) 机制。虽然 Spring 提供了很多默认的类型转换器(比如字符…

在使用 Spring MVC 开发 Web 应用时,我们经常需要处理从 HTTP 请求(如 URL 参数、表单数据)到 Controller 方法参数的自动转换。这就是 Spring 的数据绑定 (Data Binding) 机制。虽然 Spring 提供了很多默认的类型转换器(比如字符串转数字、布尔值等),但在实际开发中,我们常常会遇到默认转换无法满足需求的情况,尤其是处理日期格式或需要自定义对象绑定时。

这时候,@InitBinder​ 就闪亮登场了!它提供了一个强大的钩子,允许我们在数据绑定执行前,对绑定过程进行精细化的定制。

什么是 @InitBinder?

​@InitBinder​ 是一个用在 Controller 方法上的注解。被 @InitBinder​ 注解的方法会在当前 Controller 处理请求、进行数据绑定之前被调用。这个方法通常接受一个 WebDataBinder​ 对象作为参数,WebDataBinder​ 正是执行数据绑定的核心组件。

通过 WebDataBinder​ 对象,我们可以注册自定义的编辑器 (PropertyEditor​),或者进行其他的绑定相关的设置。

基本使用方法如下:

import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.InitBinder;
// ... 其他 import@Controller // 或者 @RestController
public class YourController {@InitBinderpublic void initBinder(WebDataBinder binder) {// 在这里进行自定义绑定设置System.out.println("Initializing WebDataBinder for YourController!");// ... 例如注册自定义编辑器 ...}// ... 其他 @RequestMapping 方法 ...
}

常见应用场景一:统一处理日期格式

这是 @InitBinder​ 最常见的应用场景之一。我们知道,前端传过来的日期字符串格式五花八门,而 java.util.Date​ 或 java.time.*​ 类型的默认解析行为往往不靠谱,且可能受服务器区域设置影响。

与其在每个接收日期的 Controller 方法参数前都加上 @DateTimeFormat(pattern = "...")​,我们可以使用 @InitBinder​ 在 Controller 级别统一处理:

import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.RestController;
import java.beans.PropertyEditorSupport;
import java.util.Date;
// 假设你有一个 DateUtils 工具类
import com.yourcompany.common.utils.DateUtils;@RestController
public class UserController {@InitBinderpublic void initBinder(WebDataBinder binder) {// 注册针对 Date.class 类型的自定义编辑器binder.registerCustomEditor(Date.class, new PropertyEditorSupport() {@Overridepublic void setAsText(String text) throws IllegalArgumentException {// 当需要将 String 转为 Date 时,调用此方法// 使用自定义的 DateUtils 进行解析,它可以支持多种格式Date parsedDate = DateUtils.parseDate(text);if (parsedDate == null && text != null && !text.isEmpty()) {// 如果解析失败,可以抛出异常或记录日志throw new IllegalArgumentException("Could not parse date: " + text);}// 将解析后的 Date 对象设置回去setValue(parsedDate);}// (可选) 你还可以重写 getAsText 方法来控制 Date 对象如何转回 String// @Override// public String getAsText() {//     Date value = (Date) getValue();//     return (value != null ? new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(value) : "");// }});}@GetMapping("/users/by-creation-date")public User findUsers(Date creationDate) { // 无需 @DateTimeFormat// Spring 会自动使用上面注册的 CustomEditor 来解析 creationDate 参数// ...}
}

注意: 这个 @InitBinder​ 只对 URL 参数、表单数据等生效,不影响 @RequestBody​ 接收的 JSON 数据中的日期解析(那个由 Jackson 控制,需要 @JsonFormat​)。

常见应用场景二:自动去除字符串前后空格

有时候,我们希望所有传入的字符串参数都能自动去除首尾空格。@InitBinder​ 配合 Spring 提供的 StringTrimmerEditor​ 可以轻松实现:

import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.RestController;@RestController
public class ProductController {@InitBinderpublic void initBinder(WebDataBinder binder) {// 创建 StringTrimmerEditor,true 表示将空字符串转换为 nullStringTrimmerEditor stringTrimmerEditor = new StringTrimmerEditor(true);// 注册给 String.class 类型binder.registerCustomEditor(String.class, stringTrimmerEditor);}@GetMapping("/products")public Product findProduct(String productName) {// 传入的 productName 会被自动 trim// 如果传入 "  My Product  ",这里接收到的会是 "My Product"// 如果传入 "   " 或 "",这里接收到的会是 null (因为构造函数是 true)// ...}
}

@InitBinder 的作用域与全局配置

默认情况下,写在某个 Controller 里的 @InitBinder​ 方法只对当前这个 Controller 生效。如果你希望某些绑定规则(比如日期处理、字符串 trim)应用到所有或部分 Controller,该怎么办?

答案是使用 @ControllerAdvice​!你可以创建一个带有 @ControllerAdvice​ 注解的类,并在其中定义 @InitBinder​ 方法。这样,这个 @InitBinder​ 的逻辑就会应用到所有被 @ControllerAdvice​ 覆盖的 Controller 上。

import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.InitBinder;
import java.beans.PropertyEditorSupport;
import java.util.Date;
import com.yourcompany.common.utils.DateUtils;@ControllerAdvice // 应用到所有 Controller (也可以指定范围)
public class GlobalBindingInitializer {@InitBinderpublic void initBinder(WebDataBinder binder) {// 全局注册 Date 编辑器binder.registerCustomEditor(Date.class, new PropertyEditorSupport() {@Overridepublic void setAsText(String text) {setValue(DateUtils.parseDate(text));}});// 全局注册 String Trimmerbinder.registerCustomEditor(String.class, new StringTrimmerEditor(true));}
}

@InitBinder vs. 格式化注解 (@DateTimeFormat, @NumberFormat)

  • ​@DateTimeFormat​ 和 @NumberFormat​ 等注解是字段/参数级别的,用于标准、明确的格式化需求,使用起来更简单直接。

  • ​@InitBinder​ 是Controller 级别或全局级别的,提供了更强大、更底层的定制能力。适用于:

    • 需要统一处理某种类型(如 Date)的转换规则。
    • 需要实现更复杂的绑定逻辑(比如根据 ID 从数据库加载对象)。
    • 处理 Spring 没有内置格式化注解支持的类型。

一般建议优先使用格式化注解,只有当注解无法满足需求或需要在 Controller/全局层面统一处理时,才考虑使用 @InitBinder​。

注意事项

  • ​@InitBinder​ 不影响 @RequestBody​ 绑定的 JSON 数据。JSON 的序列化和反序列化由 Jackson(或其他 JSON 库)控制,需要使用 @JsonFormat​ 等 Jackson 注解。
  • 过度使用 @InitBinder​,特别是进行复杂的逻辑,可能会让数据转换的过程变得不那么直观。
  • 全局 @InitBinder​ (通过 @ControllerAdvice​) 需要谨慎使用,确保不会意外影响到所有 Controller。

总结

​@InitBinder​ 是 Spring MVC 提供的一个非常有用的特性,它允许我们深入数据绑定的核心,定制请求参数到方法参数的转换逻辑。通过合理使用 @InitBinder​,我们可以优雅地解决默认类型转换无法满足的场景,特别是统一处理日期格式和字符串修整等常见需求,从而提高代码的健壮性和可维护性。

http://www.dtcms.com/wzjs/247213.html

相关文章:

  • 网站栏目页怎么做免费友情链接交换平台
  • 温州做网站建设多少钱百度seo排名报价
  • 在什么政府网站可以查小区建设项目seo搜索引擎官网
  • 自建站需要多少钱seo具体是什么
  • 翻硬币网站怎么做seo用什么论坛引流
  • 建站网站建设哪个好整合营销传播的六种方法
  • 做网站前台内容对应填充网络搭建是干什么的
  • 注册网站商标多少钱百度收录哪些平台比较好
  • 深圳网络营销网站建设google play商店
  • 苏州专业网站建设设计百度网盘客服电话人工服务
  • 做商业网站赚钱吗福州短视频seo平台
  • 旅游景区规划设计公司长沙排名优化公司
  • 沈阳网站建设找德泰诺2024的新闻有哪些
  • 做网站视频手机178软文网
  • 网站内部结构学生个人网页制作成品代码
  • 十大免费ppt模板免费下载网站软文营销常用的方式
  • 网站里的网页是一个一个做的么批量优化网站软件
  • idea做网站登录网络营销项目策划
  • 哪里可以做期货网站平台网站如何做推广
  • 徐州设计公司网站的公司江苏seo平台
  • 东莞网站公司星鑫seo1搬到哪里去了
  • 网站开发外包报价单成人教育培训机构
  • 蚌埠做网站哪家好百度站长工具网站提交
  • 有没有做软件的网站众志seo
  • 云网站建设017年青橙子建站怎么收费
  • 做视频网站的备案要求吗免费seo网站
  • 购物网站排名2018网站免费seo
  • 江北网站制作2345导航网址
  • 大学广告设计专业网站优化靠谱seo
  • 电子商务网站建设与维护百度下载2022新版安装