我有工作的c转换器:
public class StringToLongConverter implements Converter<String, Long> {
@Override
public Long convert(String source) {
Long myDecodedValue = ...
return myDecodedValue;
}
}
在Web配置中,我有:
@Override
public void addFormatters (FormatterRegistry registry) {
registry.addConverter(new StringToLongConverter());
}
一切都很好,但它适用于所有控制器,我需要它只执行一些控制器。
//I need this controller to get myvalue from converter
@RequestMapping(value = "{myvalue}", method = RequestMethod.POST)
public ResponseEntity myvalue1(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
//I need this controller to get myvalue without converter
@RequestMapping(value = "{myvalue}", method = RequestMethod.POST)
public ResponseEntity myvalue2(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
我们可以指定哪些转换器或参数应该与自定义转换器一起使用,哪些不应该?
通常来说,注册的转换器绑定到输入源和输出目标。在您的情况下<代码>
为了更好地控制何时有条件地应用转换,可以使用ConditionalGenericConverter。该接口包含3种方法:
>
布尔匹配(TypeDescriptor sourceType,TypeDescriptor targetType),以确定是否应应用转换
<代码>设置
对象转换(对象源、TypeDescriptor源类型、TypeDescriptor目标类型)
进行实际转换的方法。
我已经设置了一个小型Spring项目来使用条件通用转换器
:
要求Conversion.java:
// RequiresConversion is a custom annotation solely used in this example
// to annotate an attribute as "convertable"
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface RequiresConversion {
}
SomeConverter。java:
@Component
public class SomeConverter implements ConditionalGenericConverter {
@Override
public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) {
// Verify whether the annotation is present
return targetType.getAnnotation(RequiresConversion.class) != null;
}
@Override
public Set<ConvertiblePair> getConvertibleTypes() {
return Collections.singleton(new ConvertiblePair(String.class, Long.class));
}
@Override
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
// Conversion logic here
// In this example it strips "value" from the source string
String sourceValue = ((String) source).replace("value", "");
return Long.valueOf(sourceValue);
}
}
SomeController。java:
@RestController
public class SomeController {
// The path variable used will be converted, resulting in the "value"-prefix
// being stripped in SomeConverter
// Notice the custom '@RequiresConversion' annotation
@GetMapping(value = "/test/{myvalue}")
public ResponseEntity myvalue(@RequiresConversion @PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
// As the @RequiresConversion annotation is not present,
// the conversion is not applied to the @PathVariable
@GetMapping(value = "/test2/{myvalue}")
public ResponseEntity myvalue2(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
}
转换将在http://localhost:8080/test/value123,产生一个长值。但是,由于第二个映射上不存在自定义注释RequiresConversion,因此http://localhost:8080/test2/value123将跳过。
您还可以通过将注释重命名为SkipConversion
并验证匹配()
方法中是否不存在注释来反转注释。
希望这有帮助!
我对Spring框架是完全陌生的。我有一个任务是在Spring上制作电话簿应用程序。我需要登记和授权,还有我的电话簿。我有两个控制器,第一个是控制授权和注册的UserController 当我尝试进行身份验证或注册时。新用户我有这样的错误: NestedServletException:请求处理失败;嵌套异常是java.lang.IllegalStateException:映射到HTTP路径“HT
问题内容: 我正在尝试在数据库中进行几行的mysql转储。然后,我可以使用转储将那几行上载到另一个数据库中。我拥有的代码正在运行,但是它会转储所有内容。我怎样才能使mysqldump只转储表的某些行? 这是我的代码: 问题答案: 只需解决您的选择。它应该是有效的SQL WHERE子句,例如: 您将列名放在引号之外。
我有下一个Rest控制器 我将Spring Security用于以下配置: 我想为我的控制器编写单元测试。我写了下一个测试,但是它们工作得不好: 当我开始测试时,我得到了状态404。如果在安全配置中删除@EnableGlobalmetodSecurity(prePostEnable=true),测试正在工作,但不工作@PreAuthorize。我有一些问题: 如果prespenabled=true
我一直在尝试将文件从rest客户端发送到我的spring控制器。在控制器中,我使用“@requestParam(“file”)MultipartFile file”从客户端获取文件,并使用REST服务注释进行注释,如下所示 我总是得到415媒体类型不支持。在上面的方法中,如果我不给多部分,它给我的结果是完成了,但不是多部分。 所以我可以知道如何发送文件到我的Spring控制器?
我有一个例子,我有多个cookie值需要用来填充一个Java对象。我希望我的控制器签名看起来像这样: 我已经为Cookie[]创建了一个到Person的转换器,并在我的WebMvcConfigurerAdapter类上使用addFormatters方法注册了它,但是我似乎无法让Spring使用它。 我有另一个工作正常的转换器,它以相同的方式设置。两者之间的唯一区别是工作变量使用@PathParam
所以,我开始使用昂首阔步。我绝对喜欢它的功能,但我对所有方法的可用性有一些怀疑。 据我所知--Swaschbuclke“Auth”方法中包含的所有方法实际上都是关于API本身的,但我在这方面不需要帮助--我的所有API都受到API ID/密钥对的保护。 我想以某种方式使用ASP.NET标识(登录系统)来限制对API页面(/swagger/ui/index)的访问。 有什么办法吗?Swaschbuc