easy_trans 1.0.1 更新,好用的 springboot 数据/字典翻译组件

栏目: 软件资讯 · 发布时间: 3年前

内容简介:1、1.0.1更新内容 支持翻译结果绑定到pojo的字段中(v1.0.0是只支持将翻译结果put到transmap中) 2、Easy Trans简介 easy trans是一个springboot的字典/外键 翻译组件,可以不用表关联查询 根据字典码 外键翻译 字典...

1、1.0.1更新内容

  • 支持翻译结果绑定到pojo的字段中(v1.0.0是只支持将翻译结果put到transmap中)

2、Easy Trans简介

    easy trans是一个springboot的字典/外键 翻译组件,可以不用表关联查询 根据字典码 外键翻译  字典描述 和title/name 等信息,使用效果和方法如下图:

easy_trans 1.0.1 更新,好用的 springboot 数据/字典翻译组件  

3、Easy Trans集成

EasyTrans支持 进程缓存翻译,redis缓存翻译,动态查表三种方式,集成步骤如下:

1 、先把maven 引用加上

       <dependency>
            <groupId>com.fhs-opensource</groupId>
            <artifactId>easy-trans-spring-boot-starter</artifactId>
            <version>1.0.1</version>
        </dependency>

2、如果使用 Redis 换存翻译请添加redis的引用(如果之前加过了请不要重复添加)

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

3、在yaml中添加如下配置

easy-trans:
   autotrans:
       #您的service所在的包 支持通配符比如com.*.**.service.**,他的默认值是com.*.*.service.impl
       package: com.fhs.test.service.** 
	   #启用redis缓存
   is-enable-redis: true
  
spring:
  redis:
    host: 192.168.0.213
    port: 6379
    password: 123456
    database: 0
    timeout: 6000

4、如果不使用redis,请在启动类加禁用掉redis的自动配置类

@SpringBootApplication(exclude = { RedisAutoConfiguration.class })

4. 传送门

源码和使用教程 https://gitee.com/fhs-opensource/easy_trans

集成demo:https://gitee.com/fhs-opensource/easy_trans_springboot_demo


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Python Algorithms

Python Algorithms

Magnus Lie Hetland / Apress / 2010-11-24 / USD 49.99

Python Algorithms explains the Python approach to algorithm analysis and design. Written by Magnus Lie Hetland, author of Beginning Python, this book is sharply focused on classical algorithms, but it......一起来看看 《Python Algorithms》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具