Better, faster, lighter Java ... you mean Ruby right ?
SCEA5,SCBCD1.3,SCWCD5,SCJP1.4 - memories from my youth.
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
Mihai Lihatchi wrote:Hello Luke.
Using a JEE cluster is the recommended way to deal with the single point of failure problem (and to improve scalability, overall performance)
Somebody posted links/info on clustering on this forum (if you search closely)
Regarding collocation (deploying web and EJB packages in the same server) it depends on the requirements of your system :
If you only have web clients I would go for a collocated solution for instance (about 90% of the cases) , if you have other clients (like a Swing desktop client, WS client) then consider a distributed ejb and distributed war solution.
Anyway this is just my opinion you can do some more research and post back. https://coderanch.com/forums/posts/quote/0/2305381
Andrew Monkhouse wrote:In addition to load concerns, there are potential security problems in having multiple "servers" on a single machine.
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
Andrew Monkhouse wrote:The general idea is that a more secure environment has only necessary services accessible via a DMZ.
If you set up such an environment, and if you use the dual firewall approach, you can specify precisely what traffic is allowed to enter the DMZ, and precisely what traffic is allowed to travel in either direction between the DMZ and the internal network.
In a scenario where there is no DMZ (or there are multiple servers hosted on a single machine) you are exposing more services to the outside world than you need to. If you have both the web container and the application server inside the DMZ then you almost certainly have access to the database from the DMZ. If you move the application server into an internal network, then even if a hacker gets access to the web container, they still only have access to your predefined EJBs / Web Services / ...
Consider Paul's rocket mass heater. |