hi every body, I am just just running a poll about which java stackĀ are you using ? and any comments are welcome ! [poll id="2"] have a nice weekend
I have been implementing java for 4 years and what I have learned: "not all Java API's are good" but there are some open/vendor APIs you should prefer.
Messaging is really easy through a single JVM. For a distributed environments JMS is strongly recommended. but for smaller and simple projects here is and example implementation via JGroups. Usage DistributableEventPublisher distributableEventPublisher=.... distributableEventPublisher.castEvent(TEXT_MESSAGE/XML/Serializable); requirements: springframework 2+ JGroups 2.6.1 JUnit (for test)
no matter what size is your application distributable should be always under consideration. otherwise it becomes a full pain full reimplementation of whole application. yes reimplementation is always good but for developers it is always painful and for customers it is always very but ...