Step 1: The pom.xml with the checkstyle plugin and properties.
Step 2: The checkstyle files that define the rules.
src/main/resources/checkstyle/myapp-checks.xml
src/main/resources/checkstyle/myapp-suppressions.xml
Step 3: Running via mvn command.
…
Step 1: The pom.xml with the checkstyle plugin and properties.
Step 2: The checkstyle files that define the rules.
src/main/resources/checkstyle/myapp-checks.xml
src/main/resources/checkstyle/myapp-suppressions.xml
Step 3: Running via mvn command.
…
Findbugs is an open source project for a static analysis of the Java bytecode to identify potential software bugs.
Step 1: The pom.xml with the findbug &
…
Cobertura is a free code coverage tool, which calculates the percentage of Java code accessed by unit tests.
Step 1: The pom.xml file with the relevant reporting plugins.
…
You can download Notepad++ from http://notepad-plus-plus.org/download. It is a very handy productivity boosting tools. Q. Why is Notepad++ is a very handy tool? … Read more ›...
One of the traits of good developers is that being lazy and this laziness leads to finding productive ways to perform a task. Recently, I had to create a number...
Lets take a tutorial like scenario to demonstrate power of Notepad++ as a developer productivity tool. Q. How will you extract rule_name values from a tabular data shown below and...
This post is based on a industrial example where you have a CSV file where you want to add quotes (i.e. “) around it. For example
Convert text like:
To
Another reason you might want to do this in Java is to construct a String array or list as shown below.…
When you have some data in tabular (e.g. Excel spreadsheet) format and would like to insert into a database table, you need to write an SQL insert query. Manually writing SQL query for multiple records can be cumbersome.
…
There are times where you need to generate “INSERT” SQL statements from existing data. For example, you may have a production release ready “Delete” SQL statement as shown below to...