-
Recent Posts
Blog Archive
My Links
Labels
- Application Clustering (4)
- Distributed Systems (6)
- EMS/NMS/OSS (9)
- Food (3)
- General (35)
- Hadoop (1)
- Hibernate (2)
- java (22)
- Linux (1)
- Miscellaneous (11)
- Movies (21)
- NGOSS/OSS/J/TMF (5)
- Pics (9)
- Scala (1)
- Technical (5)
- Travelogue (2)
- Uncategorized (8)
- workflow/XPDL/BPEL (1)
Category Archives: java
The Art of Java Application Performance Analysis and Tuning – Part 2
This is the second article in the series of articles exploring the tools and techniques for analyzing, monitoring, and improving the performance of Java applications. The Art of Java Application Performance Analysis and Tuning-Part 1 The Art … Continue reading
The Art of Java Application Performance Analysis and Tuning – Part 1
This is the first article in the series of articles exploring the tools and techniques for analyzing, monitoring, and improving the performance of Java applications. The Art of Java Application Performance Analysis and Tuning-Part 2 The Art … Continue reading
EhCache — Too Many Open Files
EhCahce with “diskPersistent=true” flag is used to persist the cache values to disk and can be used after system restarts. If you have many caches with “diskPersistent=true” then you may get “Too many Open files Exception”. This is because EhCache is using nearly 30 open … Continue reading
Posted in java
Leave a comment
Hibernate – Oracle : Creating Index For Foreign-Key Columns
In Oracle adding Index for Foreign Key columns is important for performance reasons. And also if you are using transactions, It is important to create index for FK columns. With out index your application may experience many deadlock problems. These indexes are automatically generated for MySQL … Continue reading
Posted in Hibernate, java
Leave a comment
JacORB Configuaration
Add the following JacORB properties to java command line or update in jacorb.properties file To enable general debug logs add the below line -Djacorb.log.default.verbosity=4 To enable notification debug logs add the below line -Dorg.jacorb.notification.log.verbosity=4 To increase POA Queue. Increase this … Continue reading
Posted in java
Leave a comment
Hibernate : Adding an enum as a property
Using Hibernate Annotations: @Entity public class TestEntity { @Enumerated(EnumType.STRING) @Column(name=”ENUM_TYPE”) private TestEnum testEnum; } Using XML Based Mapping : Add hibernate-annotations.jar in your classpath during deployment but there’s no compile-time dependency: <property name=”testEnum” length=”30″ column=”testEnum” lazy=”false”> <type … Continue reading
YourKit
I found YourKit Java profiler is good for CPU and memory profiling of java applications. It gave better , useful & smarter details compared to other profilers.
Posted in java
Leave a comment
Design Techniques
Some usefull java design techniques articles by Bill Venners http://www.artima.com/designtechniques/
Posted in java
Leave a comment
Java in Telecommunications – Telemangement Forum and OSS/J
By Gero Vermaas Source:http://blog.xebia.com/2007/04/19/java-in-telecommunications-–-telemangement-forum-and-ossj/comment-page-1/#comment-8950 As promised in the first post in this series, we’ll now zoom in on the Telemanagement Forum (TMF) and OSS/J. This post will be a bit theoretical, but I promise that the next one will be … Continue reading
Posted in EMS/NMS/OSS, java
Leave a comment
Java in Telecommunications – Introduction
By Gero Vermaas Source:http://blog.xebia.com/2007/03/30/java-in-telecommunications-introduction/ Why a blog on Java and telecommunications? There is no other industry for which the Java Community Process hosts so many specifications and I wonder if people are aware of this. Additionally, in May I’ll be … Continue reading
Posted in EMS/NMS/OSS, java
Leave a comment