Skip to content

Releases: codingapi/springboot-framework

v1.5.12

09 Mar 14:23
Compare
Choose a tag to compare

add RSA publicKey mode

v1.5.10

25 Feb 15:27
Compare
Choose a tag to compare

public RestTemplateContext

v1.5.9

24 Feb 11:41
Compare
Choose a tag to compare

http add some fature

  1. add httpclient Request support

v1.5.7

18 Feb 02:56
Compare
Choose a tag to compare

Fix Trigger remove bug

v1.5.6

17 Feb 11:11
Compare
Choose a tag to compare

优化Trigger

  1. 异常日志打印
  2. remove提供默认实现

v1.5.5

16 Feb 15:19
Compare
Choose a tag to compare

fix trigger bug

关于Event与Trigger的差异说明:
Trigger与Event差异是,Event是消息驱动性,而Trigger是订阅驱动性。
两者的差异在于,Event是确定了消息而不确定订阅方,而Trigger则是确定了订阅再等待消息触发。

v1.5.4

16 Feb 03:30
beb2b08
Compare
Choose a tag to compare

fix rest

v1.5.3

14 Feb 15:14
20fabd3
Compare
Choose a tag to compare

data-fast support spring framework advisors

  • FastMapping support other advisors,examples @PreAuthorize
    @PreAuthorize(value = "hasRole('ROLE_ADMIN')")
    @FastMapping(
            method = RequestMethod.GET,
            mapping = "/api/demo/findByName1",
            value = "select d from DemoEntity d where name = :name",
            countQuery = "select count(d) from DemoEntity d where name = :name")
    MultiResponse<DemoEntity> findByName1(DemoDTO.DemoQuery query);

v1.5.2

14 Feb 04:10
Compare
Choose a tag to compare

add Login Extra data

  • add security modules add extra

v1.5.1

12 Feb 08:17
Compare
Choose a tag to compare

fix rest bug

  1. RestTemplate fix url encode % bug
  2. SessionClient support json html type to request data