ASM helper Minidev

ASM Optimisation Package

License

License

Categories

Categories

IDE Development Tools Net ASM Application Layer Libs Bytecode Manipulation
GroupId

GroupId

net.minidev
ArtifactId

ArtifactId

asm
Last Version

Last Version

1.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

ASM helper Minidev
ASM Optimisation Package
Project Organization

Project Organization

Chemouni Uriel

Download asm

How to add to project

<!-- https://jarcasting.com/artifacts/net.minidev/asm/ -->
<dependency>
    <groupId>net.minidev</groupId>
    <artifactId>asm</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/net.minidev/asm/
implementation 'net.minidev:asm:1.0.2'
// https://jarcasting.com/artifacts/net.minidev/asm/
implementation ("net.minidev:asm:1.0.2")
'net.minidev:asm:jar:1.0.2'
<dependency org="net.minidev" name="asm" rev="1.0.2">
  <artifact name="asm" type="jar" />
</dependency>
@Grapes(
@Grab(group='net.minidev', module='asm', version='1.0.2')
)
libraryDependencies += "net.minidev" % "asm" % "1.0.2"
[net.minidev/asm "1.0.2"]

Dependencies

compile (1)

Group / Artifact Type Version
asm : asm jar 3.3.1

test (1)

Group / Artifact Type Version
junit : junit jar 3.8.2

Project Modules

There are no modules declared in this project.

json-smart-v2

Build Status Maven Central Coverage Status

Json-smart development start in 2010, at that time SQL servers do not support native JSON fields, NoSQL databases slowly emerging, and all the existing JSON API were bogus. One this time I write lots of test to benchmark and compare JSON java parser.

I never like SQL database, because it's almost impossible to update a data model without, impacting the production platform. Adding a column is a terrible operation.

That way I started json-smart. all non-indexed data in my datastores were stored in a column as a is serialized JSON message. To fit MySQL varchar(255) fields, I try to make my JSON as small as possible, that why json-smart il optimized to produce small JSON-like String.

But now times had changed, most of the JSON API are now stable, and I'm now using document-oriented Databases and JSON native SQL types.

So I do not use my json-smart anymore. I had fun with this project. If you want to apply some change on json-smart create pull request, with a lots JUnit test.

WIKI is here

Changelog

V 2.4

  • java 11 build

V 2.3

  • Patch 37 issue 37
  • Explicite support of char 127 issue 18
  • Integrate json-smart-action from Eitan Raviv PR 31
  • Remove hard codded e.printStackTrace() issue 33
  • Improve date parsing code to support all timeZones issue 29

V 2.2.2

  • Fix support for default java datetime format for US locale
  • Update my time Zone from Paris to San Francisco.

V 2.2.1

  • Fix issue in strict mode issue gh-17
  • Add a licence Copy at the root project level issue gh-16
  • Change InputStream input reading to use UTF8. issue 48

V 2.2

  • Rename asm to accessors-smart due to conflict name with asm.ow2.org lib. fix PR-10
  • Fix OSGI error fix PR-2
  • Add support for BigDecimal
  • Improve JSONObject.getAsNumber() helper
  • Add a Field Remaper

V 2.1

  • net.minidev.json.mapper renamed to net.minidev.json.writer
  • Add ACCEPT_TAILLING_SPACE Parssing Flag.
  • Mapper classes now non static.
  • Reader mapper are now available in net.minidev.json.reader.JsonReader class
  • Writer mapper are now available in net.minidev.json.writer.JsonWriter class

V 2.0

  • Fix Double Identification issue 44
  • Fix Collection Interface Serialisation
  • Fix security Exception in ASM code
  • Project moved to GitHub
  • Fix issue 42

V 2.0-RC3

  • Add custom data binding inside the ASM layer.
  • Add Date support
  • Add \x escape sequence support issue 39
  • fix issue issue 37

V 2.0-RC2

V 2.0-RC1

  • speed improvement in POJO manipulation
  • add JSONStyle.LT_COMPRESS predefined generate strct json, but ignoring / escapement.

Versions

Version
1.0.2
1.0
1.0-RC3
1.0-RC1