Skip to main content
View by: Most Recent | Topic | Community | Webloggers   
Monthly Archives:    

Blog Entries by Topic

• Accessibility • Ajax • Blogging • Business • Community 
• Databases • Deployment • Distributed • Eclipse • Education 
• EJB • Extreme Programming • Games • GlassFish • Grid 
• GUI • IDE • Instant Messaging • J2EE • J2ME 
• J2SE • Jakarta • JavaFX • JavaOne • Jini 
• JSP • JSR • JXTA • LDAP • Linux 
• Mobility • NetBeans • Open Source • OpenSolaris • OSGi 
• P2P • Patterns • Performance • Porting • Programming 
• Research • RMI • RSS Feeds • Search • Security 
• Servlets • Struts • Swing • Testing • Tools 
• Virtual Machine • Web Applications • Web Design • Web Development Tools • Web Services and XML 


Open Source

Relationship between open source and IP
on May 25, 2012 | Permalink | Discuss

Community

When we starting planning how we were going to use Java technology at Amway (10 years ago); we realized we had many decisions to make about standards to adopt, practices to learn, architectures to use, patterns to follow, etc. Fortunately for us, there were many sources of information to help us figure all of this out. Unfortunately for us, there were many sources of information to help us figure...
on May 21, 2012 | Permalink | Discuss
10 years ago, when we were decided to use Java technology to create a new application, for use at Amway Corp; we thought it was sufficient to say, "We are using Java!". We were wrong... We quickly realized that there was Java 2 Standard Edition and there was Java 2 Enterprise Edition. Since we were architecting our application to run in an application server-based environment, we concluded that...
on May 14, 2012 | Permalink | Discuss
Hello all. My name is Larry Fernandez and I am a Principal Software Developer in IT. I work for Amway Corp in Grand Rapids, Michigan. March 2012 was my company's 10-year anniversary using Java. We have over 1 million lines of J2EE code in production, with more on the way. I have been here since our "Java" beginnings and I have played many roles (developer, architect, project manager, etc.). We...
on May 9, 2012 | Permalink | Discuss
JavaOne India is a great success!
on May 4, 2012 | Permalink | Discuss
Hello there! I'm Alessandro Gentile and this is my brand new blog on java.net. I must say, I'm honored to be part of this community. Two months ago I joined the GlassFish project and I began to write tutorials. There are several reasons for my choice and among them there's the love for open source software and java EE. Markus Eisele in his blog two weeks ago wrote an article that I found truly...
on Apr 15, 2012 | Permalink | Discuss

Education

The search algorithm is used for finding an item within a collection of items. String searching algorithm is a category of the search algorithm. The main idea of string searching algorithm is to find text pattern in a string. There are many techniques used to solve this. This third and last entry will be about 'Boyer-Moore (BM)' algorithm and how you can apply it on a simple Java code.
on May 21, 2012 | Permalink | Discuss
The search algorithm is used for finding an item within a collection of items. String searching algorithm is a category of the search algorithm. The main idea of string searching algorithm is to find text pattern in a string. There are many techniques used to solve this. This first entry will be about 'brute-force search' and how you can apply it on a simple Java code.
on Apr 19, 2012 | Permalink | Discuss

Web Applications

Here's how to access the latest JSF 2.2 spec snapshot. 1. go to maven.java.net 2. type in "javax.faces:javax.faces-api:2.2-SNAPSHOT". 3. use the tree browser to open the -javadoc.jar artifact. 4. Use the artifact browser to open the index.html.
on May 17, 2012 | Permalink | Discuss
The following blog shows an example of Server Sent Events in HTML5. It demonstrates using a sample where a server periodically polls for Twitter information and sends the data to the clients using Server Sent Events
on Apr 21, 2012 | Permalink | Discuss

Programming

The search algorithm is used for finding an item within a collection of items. String searching algorithm is a category of the search algorithm. The main idea of string searching algorithm is to find text pattern in a string. There are many techniques used to solve this. This second entry will be about 'Knuth-Morris-Pratt (KMP)' algorithm and how you can apply it on a simple Java code.
on May 10, 2012 | Permalink | Discuss
Fast Messenger in JavaScript can forward messages for your objects and functions within the main UI thread, one or multiple web workers, or even between UI thread and web workers. This way your JavaScript programs are promoted to be multi-threaded in no time.
on May 3, 2012 | Permalink | Discuss
Brian Goetz recently provided new details on the status of JSR 335 in his OpenJDK document "State of the Lambda: Libraries Edition." Project Lambda is a fundamentally important enhancement to Java 8. And, based on the response of developers in our recent poll...
on May 2, 2012 | Permalink | Discuss
Fast Messenger Lite is available in JavaScript. This post lists links to three demos. The first demonstrates how to use active object in a regular html page. The second shows how active objects in UI and Web worker thread communicate. The third demo has two web workers, and again active objects in three threads can send messages to each other including web worker to web worker.
on May 1, 2012 | Permalink | Discuss
Recently, I've been investigating the methods Java provides for developing desktop applications that efficiently utilize multicore processors. Java 7's Fork/Join Framework is the current focus of my investigation. But, Brian Goetz has just provided an update on the "State of the Lambda: Libraries Edition," which tells us lots about the current status of what's coming up in Java 8...
on Apr 25, 2012 | Permalink | Discuss
FM Lite is a specially tailored subset of FM that aims to complete with threads and multithreading.
on Apr 25, 2012 | Permalink | Discuss
A few nights ago, I was browsing the chapters about concurrent programming in Herbert Schildt's excellent "Java: The Complete Reference, 8th Edition," and I was struck by the evolution of concurrency in Java over the years, from threads, through the richness of Java 5's Concurrency Utilities, and on to Java 7's Fork/Join Framework...
on Apr 22, 2012 | Permalink | Discuss

Databases

Release the newest version of the framework to persist objects in Apache Cassandra in easy way. Among improvement is the JPA annotations, also JPQL.   JCassandra jCassandra=persistence.createJCassandra("select * from Person"); List<Person> persons=jCassandra.getResultList(); table 1: sample using JPQL in Easy-Cassandra Easy-Cassandra 1.0.8 Easy-Cassandra 1.0...
on Apr 21, 2012 | Permalink | Discuss

Servlets

Server-Sent Events (SSE) support in GlassFish
on Apr 20, 2012 | Permalink | Discuss

Performance

In some earlier posts, I've talked about Java threads, Java Thread Overhead, and Amdahl's Law and Parallel Processing Speed-Up. My next investigation in this series is Java 7's new Fork/Join Framework. I plan to spend quite a lot of time in this particular investigation...
on Apr 16, 2012 | Permalink | Discuss