
javaeenotes.blogspot.com
Java EE NotesOnline blog of a Java EE Developer.
http://javaeenotes.blogspot.com/
Online blog of a Java EE Developer.
http://javaeenotes.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
0.6 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
4
SITE IP
216.58.205.1
LOAD TIME
0.637 sec
SCORE
6.2
Java EE Notes | javaeenotes.blogspot.com Reviews
https://javaeenotes.blogspot.com
Online blog of a Java EE Developer.
Java EE Notes: August 2012
http://javaeenotes.blogspot.com/2012_08_01_archive.html
Online blog of a Java EE Developer. Saturday, August 4, 2012. Looking for a Java Collection class for your project, but don't know which one to use or is available? The link below will take you to a Java Collection Matrix, which lists the summarized properties of the standard Java Collection implementations. Http:/ www.janeve.me/articles/which-java-collection-to-use. Subscribe to: Posts (Atom). View my complete profile. Awesome Inc. template. Powered by Blogger.
Java EE Notes: FreeBSD on Raspberry Pi B+
http://javaeenotes.blogspot.com/2014/12/freebsd-on-raspberry-pi-b.html
Online blog of a Java EE Developer. Tuesday, December 16, 2014. FreeBSD on Raspberry Pi B. It has been almost 10 years since I ran my own UNIX-like server at home. The last Debian machine died because of hardware failures. It was an old Pentium II machine. It started itching again a week ago. I wanted to run a server at home 24/7 at a very low cost. It would also be a great opportunity to refresh my C programming skills again. I you think about low cost, then Raspberry Pi. I memorized the list, and inser...
Java EE Notes: November 2012
http://javaeenotes.blogspot.com/2012_11_01_archive.html
Online blog of a Java EE Developer. Monday, November 5, 2012. Login twice in Wicket. Override public boolean authenticate(String userName, String password) { / Your authentication code here. / Only reach this when authenticated. if (isTemporary() { bind(); } }. Saturday, November 3, 2012. Reload JQuery when DOM is changed by Wicket/AJAX. Change the ".jQueryPluginClass" CSS class, and ".initiatePlugin()" plugin call for your specific project. Subscribe to: Posts (Atom). View my complete profile.
Java EE Notes: August 2011
http://javaeenotes.blogspot.com/2011_08_01_archive.html
Online blog of a Java EE Developer. Friday, August 26, 2011. A stoppable Thread in Java. Automatically call start up method when started. Automatically call a method in an endless loop. A way to stop the thread. Automatically call clean up method when stopped. The implemenation of this abstract class:. Package com.javaeenotes; public abstract class AbstractStoppableThread extends Thread { private volatile boolean stopThread = false; @Override public final void run() { startUp(); while (! Package com....
Java EE Notes: Using JavaMail API with Glassfish and GMail
http://javaeenotes.blogspot.com/2010/04/using-javamail-api-with-glassfish-and.html
Online blog of a Java EE Developer. Tuesday, April 13, 2010. Using JavaMail API with Glassfish and GMail. In this post, I'll show you how to configure JavaMail to use the SMTP server of GMail in Glassfish. This way, you avoid hardcoding server addresses in your application and make your application more portable. It also minimalizes the amount of "plumping" code. First, fire up the admin screen of Glassfish and click on JavaMail Sessions. Then create a new session configuration by clicking "new". If you ...
TOTAL PAGES IN THIS WEBSITE
20
Javaeegeek.com
This domain may be for sale. Backorder this Domain. This Domain Name Has Expired - Renewal Instructions.
Creative Network Innovations, Inc. - IT Solutions to Empower Your Success
Submit a Trouble Ticket. Because you demand technical excellence. Here at CNI, we deliver nothing less. Expertise, At Your Command. Best Value and ROI. For over 8 years, CNI has consistently provided reliable solutions to Accent and are instrumental in architecting and maintaining our geographically diverse HA solutions. Zero seconds of downtime in eight years speaks for itself.". 6905 N. Wickham Road, Suite 300. Melbourne, Florida 32940. Toll Free 800.CNI.5547 (800.264.5547). Local 321.259.1984.
Creative Network Innovations, Inc. - IT Solutions to Empower Your Success
Submit a Trouble Ticket. Because you demand technical excellence. Here at CNI, we deliver nothing less. Expertise, At Your Command. Best Value and ROI. For over 8 years, CNI has consistently provided reliable solutions to Accent and are instrumental in architecting and maintaining our geographically diverse HA solutions. Zero seconds of downtime in eight years speaks for itself.". 6905 N. Wickham Road, Suite 300. Melbourne, Florida 32940. Toll Free 800.CNI.5547 (800.264.5547). Local 321.259.1984.
javaeeinsights | Just another WordPress.com site
Just another WordPress.com site. Register Spring custom scope using Java Config. July 21, 2015. When looking for examples on how to register a custom scope for Spring, almost all of them are using XML based config. For example: http:/ www.javabeat.net/custom-scope-spring-beans/. In my current project, I don’t use Spring XML configuration, so I needed a way to configure the SimpleThreadScope using Java based configuration. This can of course be used for all custom scope implementation. Import org.spri...
Java EE Microservices
Java EE Notes
Online blog of a Java EE Developer. Tuesday, December 16, 2014. FreeBSD on Raspberry Pi B. It has been almost 10 years since I ran my own UNIX-like server at home. The last Debian machine died because of hardware failures. It was an old Pentium II machine. It started itching again a week ago. I wanted to run a server at home 24/7 at a very low cost. It would also be a great opportunity to refresh my C programming skills again. I you think about low cost, then Raspberry Pi. I memorized the list, and inser...
On a Java-EE 6 quest
On a Java-EE 6 quest. Richard Kolb's pointless ramblings on Java-EE 6 and GlassFish 3. Wednesday, January 6, 2010. GlassFish embeddded, And test driven development. So save anyone the pain of getting this working. Here is our EJB sample that uses GlassFish Embedded and JavaDB for unit testing. Https:/ svn.kenai.com/svn/. Main project : http:/ kenai.com/projects/. Comments , patches , complaints welcome. Tuesday, December 22, 2009. In a quest to not just complain, but do something. Then furiously start co...
JAVAEERUN 打造最完美的JavaEE教程
在软件工程师 中国叫做 程序员 或 码农 的圈子里,文人相轻的现象可是非常严重的,在程序设计的各个领域里都有着错综复杂的 鄙视链。
Java EE Squad
Monday, 29 June 2015. CDI event when transaction is finished. CDI events are a very handy way of loosely coupling event driven code. At some point in your code you raise the event, and in some other area, you execute some functionality when this event occurs. And there is no relation or code dependency between the 2 areas except the CDI event payload class. DataUpdatedEvent dataUpdatedEvent) { / React on event. A scenario that I used recently was to have some Cache. By default, as already mentioned, it i...