Giter Site home page Giter Site logo

fugerit-org / fj-lib Goto Github PK

View Code? Open in Web Editor NEW
7.0 5.0 1.0 2.29 MB

Fugerit Java Library For JDK 1.8+

Home Page: https://www.fugerit.org/perm/jupiter

License: Apache License 2.0

Java 98.70% HTML 0.29% CSS 0.22% JavaScript 0.04% PLSQL 0.74% XSLT 0.03%
api java library maven utility

fj-lib's Introduction

Jupiter - Fugerit Core A.P.I. fj-doc

Provides helper libraries for other java projects (io, configuration, etc.)

Keep a Changelog v1.1.0 badge Maven Central license code of conduct Quality Gate Status Coverage

Java runtime version Java build version Apache Maven Fugerit Github Project Conventions

Useful resources :

Quick start : mvn clean install

Maven profiles :

  • full (create javadoc and sources package too)
  • test (run tests, by default tests are excluded)

module : fj-core

Maven Central javadoc

Simple utilities for IO, Configuration, DB, Language types and more.

module : fj-core-jvfs

Maven Central javadoc

Abstraction layer for a virtual file system (can be based on real file syste, database, class loader etc.)

module : fj-tool

Maven Central javadoc

Sample tool wrappers for some of fj-core module functionalities.

fj-lib's People

Contributors

fugerit79 avatar daneeldeveloper avatar mttfranci avatar dependabot[bot] avatar

Stargazers

LZ91X  avatar  avatar Matteo a.k.a. Morozko avatar  avatar  avatar  avatar Antonio Musarra avatar

Watchers

James Cloos avatar Matteo a.k.a. Morozko avatar  avatar  avatar  avatar

Forkers

daneeldeveloper

fj-lib's Issues

j2ee dependant api deprecation

Starting version 8.0.X the j2ee api will be deprecated.
This include package org.fugerit.java.core.web.*.
Thouse packages will be included in a separate project.

The dependancy :

		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
			<scope>provided</scope>
		</dependency>

Will be substituted by :

		<dependency>
		    <groupId>javax.ws.rs</groupId>
		    <artifactId>javax.ws.rs-api</artifactId>
                    <scope>provided</scope>
		</dependency>

ClassHelper.newInstance(String) no longer throws exception [8.2.0][8.2.1]

As for a sonar cloud issue the generic java.lang.Exception has been removed and replaced by a ConfigRuntimeException in method (in version [8.2.0][8.2.1] :

org.fugerit.java.core.lang.helpers.ClassHelper.newInstance(String)

As some user of the api catched ClassNotFoundException, this leads to a build error.

We are going to use specific throw clouse instead of generic one :

throws ClassNotFoundException, NoSuchMethodException, ConfigException

Version 0.3.0

Released version 0.3.0.

  • Mini filter improvement.
  • Versioning convention change from MINOR.MAJOR.PATCH.BUILD (X.X.X.X) to MINOR.MAJOR.PACTH (X.X.X)

Create function to clean xml white nodes

We want to clean a XML which looks like :

<config>
  	
  <bean id="4.1">
    		
    <field>field21</field>
    		
	
    <labelKey>sec_41_Testlabelwith</labelKey>
  </bean>
  	
  <bean id="4.2">
    		
    <field>field22</field>
    		
	
    <labelKey>sec_42_Testlabel2</labelKey>
  </bean>
  	
  <bean id="4.2">
    		
    <field>field23</field>
    		
	
    <labelKey>sec_42_Testlabel4</labelKey>
  </bean>
  
</config>

making it looks like as :

<config>
  <bean id="4.1">
    <field>field21</field>
    <labelKey>sec_41_Testlabelwith</labelKey>
  </bean>
  <bean id="4.2">
    <field>field22</field>
    <labelKey>sec_42_Testlabel2</labelKey>
  </bean>
  <bean id="4.2">
    <field>field23</field>
    <labelKey>sec_42_Testlabel4</labelKey>
  </bean>
</config>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.