Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a system with one master and multiple clients that communicate using JMS.

The server is a three tier application written in Java. In the server's data access layer, I am sending out JMS messages with tasks on one queue and I am receiving task status messages from the clients on another JMS queue. From those status messages I basically only extract Strings.

I have chosen a three tier architecture because I also need to access databases and do other business related computations before I can send a task to the clients.

I want the Strings of the status messages to be handed through all layers to the GUI where they are displayed.

I had the idead to use the same interface for all layer classes where the Strings go through, to enforce that they all have the same methods for receiving the data.

The alternative would be having separate interfaces for the layer classes, but those would then be essentially the same, except having a different class name.

Which alternative would be the proper way to ensure clean communication between the layers?

share|improve this question
Well, communication flow will be going through GUI->Business->Data and reverse way too. You only required to have the single interface at the Data Access layer. But, its not necessary that GUI (view) layer access your JMS queue. Its not formal and good practice. If my understanding is wrong, comment on it. – Mohamed Saligh Sep 15 '11 at 9:32
Mohamed, thank you for your comment. The data flow I am concerned about right now is: Data -> Business -> GUI Data passes on the String from JMS to Business, Business passes it on to GUI. Neither of them modifies anything. So I thought the enforcing all layers to have the same method could be a good idea. – Raku Sep 16 '11 at 6:33
I think some examples of your current approach would be useful. Why is it a 3 tier system? Is there parallel computing involved? – Charles Goodwin Sep 22 '11 at 15:26
You want a Canonical Model [eaipatterns.com/CanonicalDataModel.html]. – Martin Spamer Jun 8 '12 at 11:10

5 Answers

I presume what you call "strings going through layers" are some sort of human-readable, meaningful messages, if it makes sense to you to display it in the GUI.

Making a simple value object around these strings is what I would certainly recommend, i.e.

public interface StatusMessage {
    String getContent();
    void setContent(String content);
    // ...
}

public class StatusMessageImpl implements StatusMessage { ... }

instead of passing raw strings around. Raw strings would mean each layer having to know how to handle them, if ever needed; a value object hides the complexity. Such value objects can live in all layers, in a similar way JPA entities can.

If you need to, you can manage the lifecycle of StatusMessage by deciding it can be created only by the DA layer our of your JMS message and making it immutable, so that you're sure it travels unchanged through the layers. You can also divide functions related to the StatusMessage among the layers:

  • DAL knows how to create StatusMessage from JMS, or how to pack it back,
  • BL has routines (business objects?) working on StatusMessage,
  • GUI groups formatting and displaying functions.

Hope I interpreted your intentions correctly.

share|improve this answer
Wrapping the String content is definitely the way to go. I'd go one step further though and make StatusMessage an interface, and leave the knowledge of exactly which implementation is used to the DAL. – millhouse Sep 28 '11 at 0:51
@millhouse A valuable suggestion, thank you very much. Improved the answer. – MaDa Sep 28 '11 at 7:26

I am assuming that this is a psuedo-synchronous response (You have somehow co-related request/response from different queues OR used some polling mechanism on response queue to tie things together). Otherwise I don't understand how response can flow backwards from a JMS queue to the UI layer.

To your actual question, if list of possible status messages (Strings) is known upfront, why don't you convert String message recieved from queue to a Status enumeration. This could be passed as response to the other layers (may be wrapped within a Value Object). This would give you better control on what you wish to show on UI as well as help you manage related business logic better (e.g. say you want to provide different business treatment based on Status recieved).

share|improve this answer
Thank you. I think this is the best answer to my question. GUI, BL and DAL might actually have different requirements concerning the message data. – Raku Sep 29 '11 at 8:06

One should always program keeping in mind changes down the line. If you keep one interface for all three layers, what happens if one or the two of the layer needs to change for some reason. You end up changing classes at all three layers. Imagine what happens if you impose a limit on number of characters to be displayed on the UI? or change encoding on the UI?

Minimizing change and its impact is the ultimate goal of all designs.

share|improve this answer
Hmm, might be me, but I don't see how a change on one layer should affect the others as I only require a certain method to be present. If the GUI can only display a certain number of characters, it can either handle the problem of too many characters itself, or the data access layer handles it - and still hands the String through all layers to the GUI. – Raku Sep 15 '11 at 12:48

The scenario you explained is insufficient to decide about the interface design of your project. The indiscriminate use of repetitive interfaces, with little or no behavior in classes that implement them, is not good design.

Is there really a need for a strict separation of layers?

You want to have different GUIs accessing your business layer?

The operations are all read-only?

How big is your system?

Finally, "clean communication" is very vague to make critical architectural decisions. When in doubt keep the solution as simple as possible and refactor if necessary.

share|improve this answer

Not quite understood what your problem is because of a lack of information on it, but just in case if it helps, look for java.lang.reflect.Proxy.getProxyClass().

Why it is decided to break application onto 3 tiers, which will just route calls upside and down the tier hierrachy? If your goal is to separate view from jms source, I think it would be better to create a factory of JMS implementations, whose interfaces will be used in view tier. I don't see any reason for adding business layer in the situation you described.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.