Skip to main content

Posts

Showing posts from 2018

HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException

HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException If you get following error while connecting to your Database with Spring boot, try the suggested solution below: 2018 - 11 - 25 15 : 28 : 50.078 INFO 5335 --- [ main] o. h . e . j . e . i . LobCreatorBuilderImpl : HHH000424: Disabling contextual LOB creation as createClob() method threw error : java. lang . reflect . InvocationTargetException java. lang . reflect . InvocationTargetException : null at sun. reflect . NativeMethodAccessorImpl . invoke0 (Native Method) ~[na: 1.8 . 0 _161] at sun. reflect . NativeMethodAccessorImpl . invoke (NativeMethodAccessorImpl. java : 62 ) ~[na: 1.8 . 0 _161] at sun. reflect . DelegatingMethodAccessorImpl . invoke (DelegatingMethodAccessorImpl. java : 43 ) ~[na: 1.8 . 0 _161] at java. lang . reflect . Method . invoke (Method. java : 498 ) ~[na: 1.8 . 0 _161] at org. hibernate . engin

Best way to compare time in Eclipse RCP

Best way to compare time in Eclipse RCP Disadvantage of Using Date for Time comparison: First of all let's understand why java.util.Date is not effective to just compare time. If you are using java.util.Date and add two different time and if it exceed beyond 24 hours, it will add 1 day to the java.util.Date. e.g. Date date1 = new Date( 0 , 0 , 0 , 20 , 59 , 59 ); System. out . println ( "Date 1: " +date1); Date date2 = new Date( 0 , 0 , 0 , 5 , 1 , 1 ); System. out . println ( "Date 2: " +date2); Date additionDate = new Date(date2. getTime ()); additionDate. setHours (date2. getHours ()+ date1. getHours ()); additionDate. setMinutes (date2. getMinutes ()+ date1. getMinutes ()); additionDate. setSeconds (date2. getSeconds ()+ date1. getSeconds ()); System. out . println ( "Addition: " +additionDate); Output: Date 1 : Sun Dec 31 20 : 59 : 59 IST 1899 Date 2 : Sun Dec 31 05 : 01 : 01 IST 1899 Addition: Mon Jan 01 0

Use these Eclipse RCP Testing tools before your code goes to LIVE

Use these Eclipse RCP Testing tools before your code goes to LIVE Testing is most important part of any software development lifecycle. There are different type of testing required before Eclipse RCP tool is released to productions. Eclipse RCP is very easy to test with the these testing tools: UI Testing: RCP Testing Tool RCP Testing Tool is a project for GUI testing automation of Eclipse-based applications. RCPTT is fully aware about Eclipse Platform's internals, hiding this complexity from end users and allowing QA engineers to create highly reliable UI tests at great pace. SWT Bot SWTBot is an open-source Java based UI/functional testing tool for testing SWT, Eclipse and GEF based applications.  SWTBot provides APIs that are simple to read and write. The APIs also hide the complexities involved with SWT and Eclipse. This makes it suitable for UI/functional testing by everyone, not just developers. SWTBot also provides its own set of ass

[Brainshare] Singleton Design pattern

What is Singleton Design Pattern: A class has only SINGLE instance and provide a global access to it. Usage of Singleton Design Pattern: https://stackoverflow.com/a/3192124/4955676 Type of Singleton Design Pattern: [code] Singleton Class - READ MORE [code] Lazy Initialization - READ MORE [code] Thread Safe - READ MORE Singleton Design Pattern Video Book

Preferences in Eclipse RCP

Preferences Preference pages will be appear Window>Preferences dialog. It can be used to configure different features from once place. Eclipse Preferences is kind of registry of configurations. e.g.: As you see here are the various configuration ( preferences ) for Java, Ant, etc. Sample Preference in Eclipse org.eclipse.ui.preferencePages extension has to be added to in the plug-in manifest editor for Preference Pages. Extension point for PreferencePages Once you add the extension, the following will be the structure: Extensions post adding PreferencePages Following is the implementation of SamplePreferencePage.java SamplePreferencePage.java package trial . preferences ; ​ import org . eclipse . jface . preference . BooleanFieldEditor ; import org . eclipse . jface . preference . DirectoryFieldEditor ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclip