Mkyong.com

?

Channel Reputation Rank

#102
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'Mkyong.com' channel has an excellent rank. Despite such a rank, the feed was last updated more than a year ago. In addition 'Mkyong.com' includes a significant share of images in comparison to the text content. The channel mostly uses medium-length articles along with sentence constructions of the basic readability level, which is a result indicating a well-crafted news inventory on the channel.

About 'Mkyong.com' Channel

Java tutorials, examples and articles.

? Updates History Monthly Yearly
? Content Ratio
? Average Article Length

Medium-length materials prevail on 'Mkyong.com' that may be an effective tactic to grip their readers’ attention with a wider range of helpful content. There are also longer items making up more than a quarter of all articles, which can provide a deeper insight into their subjects. Moreover, there are a few short articles.

short

long

? Readability Level

'Mkyong.com' mostly contains texts of a basic readability level which may show their aim to reach a wider audience. Besides, there are articles of intermediate readability, which make up more than a quarter of all content on the channel.

advanced

basic

? Sentiment Analysis

Neutral sentiment normally indicates an unbiased attitude that prevails in the channel’s articles (e.g. it may include some kind of scientific or professional materials).

positive

negative

Recent News

Unfortunately Mkyong.com has no news yet.

But you may check out related channels listed below.

Ant – How To Create A Jar File with external libraries

[...] In this tutorial, we will show you how to use Ant build script to create a Jar file and working with the project’s external libraries / dependencies. Technologies used : Eclipse 4. [...]

Gradle – Create a Jar file with dependencies

[...] In this tutorial, we will show you how to use Gradle build tool to create a single Jar file with dependencies. Tools used : Gradle 2.0 JDK 1.7 Logback 1.1.2 1. Project Directory Create [...]

Java – Cron job to run a jar file

[...] Quartz is good, but often times we just need a simple scheduler system to run a jar file periodically. On *unix system, you can use the build-in cron to schedule a scheduler job easily. [...]

Maven – Create a fat Jar file – One-JAR example

[...] One-JAR plugin to create a single Jar together with its dependency Jars into a single executable Jar file, so called fat Jar. Tools used : Maven 3.1.1 JDK 1.7 Joda-time 2.5 1. Create a simple Java [...]

Spring Security Hello World Annotation Example

[...] In preview post, we are using XML files to configure the Spring Security in a Spring MVC environment. In this tutorial, we are going to show you how to convert the [...]

Spring Security : limit login attempts example

[...] In this tutorial, we will show you how to limit login attempts in Spring Security, which means, if a user try to login with an invalid password more than 3 times, the system [...]

Spring Security Remember Me Example

[...] this tutorial, we will show you how to implement “Remember Me” login feature in Spring Security, which means, the system will remember the user and perform automatic login even after the [...]

Spring Security + Hibernate XML Example

[...] In this tutorial, we will show you how to integrate Hibernate 4 in Spring Security, XML configuration example. Note For annotation version, please read this Spring Security + [...]

How to Apache Ant on Mac OS X

[...] In this tutorial, we will show you how to install Apache Ant on Mac OSX. Tools : Apache Ant 1.9.4 Mac OSX Yosemite 10.10 Preinstalled Apache Ant? In older version of Mac, Apache Ant may [...]

How to install Apache Ant on Windows

[...] To install Apache Ant on Windows, you just need to download the Ant’s zip file, and Unzip it, and configure the [...]

Apache Ant Tutorial

[...] Apache Ant, is a classic Java project build tool. P.S Apache Ant version : 1.9.4 1. Tutorials How to install Ant on Windows How to install Ant on Mac OSX Ant – [...]

Ant – How to print classpath from path id

[...] Ant and jUnit Task example Must include junit.jar if not in Ant’s own classpath How to Apache Ant on Mac OS X How to debug Ant Ivy project in Eclipse IDE Ant – Spring MVC and WAR file [...]

Ant – How to create a Java Project

[...] In this tutorial, we will show you how to use Ant build tool to manage a Java project, compile, and package it into a Jar file. Technologies used : Eclipse 4.2 Ant 1.9.4 JDK 1.7 1. [...]

How to debug Ant Ivy project in Eclipse IDE

[...] . 2. Add Ivy support to Project Imports previous Ant Spring MVC project into Eclipse IDE as Java project (we will convert it later). Note There are some error icons on Java source, ignore it, the [...]

Emma – Class x appears to be instrumented already

[...] correctly on Mac OSX How to create a Web Application Project with Maven How to create a Java project with Maven How to create a manifest file with Maven How to create a jar file with Maven [...]

Maven site build is very slow – dependency report

[...] to other websites. 2. Solution Above project is using too many third party libraries (which Java project doesn’t?), resolve too many dependencies caused the slow building. To solve it, skip the [...]

Spring Data MongoDB – Auto Sequence ID example

[...] id for key : hosting ? A. Remember to create the “sequence” collection! Download Source Code Download – SpringData-Auto-Sequence-Example.zip (24 KB) References MongoDB – Create [...]

Spring Security Custom Login Form Annotation Example

[...] display the page. 7.5. Try to log out, it will redirect to /login?logout page. Download Source Code Download it – spring-security-custom-login-form-annotation.zip (19 KB) References [...]

Spring Security + Hibernate Annotation Example

[...] “alex” and password “123456″, a 403 page will be displayed. Download Source Code Download it – spring-security-hibernate-annotation.zip (35 KB) References Spring Security [...]

Ant – Spring MVC and WAR file Example

[...] WEB-INF directory structure for WAR file. war/resources – For css and js files 2. Project Dependencies We use Ivy to download the project dependencies : ivy.xml 3. Ant Build Script Ant [...]

TestNG + Spring Integration Example

[...] with TestNG. Tools used : TestNG 6.8.7 Spring 3.2.2.RELEASE Maven 3 Eclipse IDE 1. Project Dependencies To integrate Spring with TestNG, you need spring-test.jar, add the following : pom.xml 2. [...]

JSF 2 + Log4j Integration Example

[...] SLF4j Bridging legacy APIs 1. Project Directory Review the final project structure. 2. Project Dependencies You need slf4j-log4j12 and jul-to-slf4j. pom.xml 4. JSF Logging Since this project is [...]

Ant – Create a fat jar file

[...] and Test 3.1 Install Ivy, skip this if you have installed it. 3.2 Ask Ivy to download the project dependencies. 3.3. Clean, compile and create the final fat jar. 3.4 Run it Download Source Code [...]

Log4j hello world example

[...] the classic log4j 1.2.x to log a debug or error message in a Java application. 1. Project Directory Review the final project structure, a standard Maven style Java project. 2. Get Log4j [...]

Java – Read a file from resources folder

[...] files in a resources folder, and read the file with following code snippets : 1. Project Directory Review a Maven project Structure. 2. Classic Example Example to read a file “test.txt” [...]

Spring Security : limit login attempts example

[...] .java AbstractUserDetailsAuthenticationProvider.java 2. Project Demo 3. Project Directory Review the final project structure (Annotation-based): 4. Database Here are the MySQL scripts [...]

Spring Security Remember Me Example

[...] detail, please refer to the above links in “quick notes”. 1. Project Demo 2. Project Directory Review the project directory structure. 3. MySQL Scripts SQL scripts to create users, [...]

Count IP address in Nginx access logs

[...] the IP Address from a Nginx access log file. Full example. Note The same trick can apply on Apache server access.log. Next, use below command to find out the access events for a certain IP, then [...]

Mac OSX – What program is using port 80

[...] : In terminal To know the PID detail : This /usr/sbin/httpd is listening on port 80, should be Apache server. P.S Tested on Mac OSX Yosemite, v10.10 References Wikipedia : Lsof Wikipedia : PS in Unix [...]

Windows 8.1, black screen with movable cursor

[...] to run MongoDB as Windows Service How to install MongoDB on Windows How to enable WebDAV in Apache Server 2.2.x – Windows How to access Windows shares in Ubuntu How to install Apache Archiva in [...]

How to change Tomcat to use JDK 7

[...] /tomcat7 1.1 Edit /etc/default/tomcat7, update JAVA_HOME. /etc/default/tomcat7 1.2 Restart Tomcat, done. 1.3 Check this article to find out which JDK is used by Tomcat. No SPACE, What [...]

How to change Tomcat manager default path ?

[...] /Catalina/localhost/manager.xml to /var/lib/tomcat7/conf/Catalina/localhost/manager123.xml 1.4 Restart Tomcat Done, restart Tomcat. Now, the Tomcat manager webapp path is changed to “/manager123″. [...]

Nginx + Apache Tomcat configuration example

[...] the Tomcat listening port, and configure the default path to /apple /etc/tomcat7/server.xml Restart Tomcat, make sure when you access 127.0.0.1:8080, it will display the content in 127.0.0.1:8080/ [...]

Logback – Duplicate log messages

Review a simple Java application and log a message via Logback. App.java P.S Tested with Logback 1.1.2 1. Problem A simple logback.xml to log a me [...]

logback.xml Example

Here are a few logback.xml examples that are using in some of my projects, just for sharing. 1. Send logs to Console All logging will be redirected [...]

Logback – different log file for each thread

In this tutorial, we will show you how to use Logback Mapped Diagnostic Context (MDC) and SiftingAppender to create a separate log file for each threa [...]

?Key Phrases
Ant – How To Create A Jar File with external libraries

[...] In this tutorial, we will show you how to use Ant build script to create a Jar file and working with the project’s external libraries / dependencies. Technologies used : Eclipse 4. [...]

Gradle – Create a Jar file with dependencies

[...] In this tutorial, we will show you how to use Gradle build tool to create a single Jar file with dependencies. Tools used : Gradle 2.0 JDK 1.7 Logback 1.1.2 1. Project Directory Create [...]

Java – Cron job to run a jar file

[...] Quartz is good, but often times we just need a simple scheduler system to run a jar file periodically. On *unix system, you can use the build-in cron to schedule a scheduler job easily. [...]

Maven – Create a fat Jar file – One-JAR example

[...] One-JAR plugin to create a single Jar together with its dependency Jars into a single executable Jar file, so called fat Jar. Tools used : Maven 3.1.1 JDK 1.7 Joda-time 2.5 1. Create a simple Java [...]

Related channels

  • Gmail.com Login Sign in - Create www.gmail.com Account

    www.Gmail.com SignIn | www.Gmail.com Login Inbox | www.Gmail.com Signup | Gmail.com Account Login | Gmail Account Passwo...

  • Addicted To Lipstick

    For Beauty Lovers Only!!

  • Www.Gmail.com

    www.Gmail.com Sign Up | www.Gmail.com Inbox | www.Gmail.com Sign In | www.Gmail.com Login

  • Indiatimes.com

    Indiatimes.com brings you the news, articles, stories and videos on entertainment, latest lifestyle, culture and new tec...

  • Cheapestdealz.com

    Buy cheapest Online Shopping Deals Codes Vouchers Discounts Promotional Offers in USA, Amazon.com Ebay.com Sears.com New...