Giter VIP home page Giter VIP logo

fj-lib's People

Contributors

daneeldeveloper avatar dependabot[bot] avatar fugerit79 avatar mttfranci avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

daneeldeveloper

fj-lib's Issues

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)

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

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.