License |
License |
---|---|
GroupId | GroupIdcn.wangshuaitong.library |
ArtifactId | ArtifactIdmodule-result-conversion |
Last Version | Last Version1.0.2 |
Release Date | Release Date |
Type | Typejar |
Description |
Description结果转换器:使用spring aop特性在处理完业务代码之后处理业务结果到返回结果的便捷式转换
使用方式:
第一步:配置spring扫描该路径,加载结果转换组件
第二步:在需要转换的控制器方法上加上转换结果的注解 @ResultConversion(使得aop可以在结果之后进行处理),并制定转换器
扩展点:
可以自定义扩展返回结果对象和转换器
结果对象:要求实现Result或者WebResult接口
转 换 器:可以简单实现 ResultConverter 接口,也可以选择实现其子抽象方法,抽象方法在各个层面处理了各个层面相应的逻辑
|
<!-- https://jarcasting.com/artifacts/cn.wangshuaitong.library/module-result-conversion/ -->
<dependency>
<groupId>cn.wangshuaitong.library</groupId>
<artifactId>module-result-conversion</artifactId>
<version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/cn.wangshuaitong.library/module-result-conversion/
implementation 'cn.wangshuaitong.library:module-result-conversion:1.0.2'
// https://jarcasting.com/artifacts/cn.wangshuaitong.library/module-result-conversion/
implementation ("cn.wangshuaitong.library:module-result-conversion:1.0.2")
'cn.wangshuaitong.library:module-result-conversion:jar:1.0.2'
<dependency org="cn.wangshuaitong.library" name="module-result-conversion" rev="1.0.2">
<artifact name="module-result-conversion" type="jar" />
</dependency>
@Grapes(
@Grab(group='cn.wangshuaitong.library', module='module-result-conversion', version='1.0.2')
)
libraryDependencies += "cn.wangshuaitong.library" % "module-result-conversion" % "1.0.2"
[cn.wangshuaitong.library/module-result-conversion "1.0.2"]
Group / Artifact | Type | Version |
---|---|---|
cn.wangshuaitong.library : library-basic | jar | 1.0.2 |
org.springframework.boot : spring-boot-starter-aop | jar |