Would you like to see this page in English? Click here.


または
1-Clickで注文する場合は、サインインをしてください。
または
Amazonプライム会員に適用。注文手続きの際にお申し込みください。詳細はこちら
こちらからも買えますよ
この商品をお持ちですか? マーケットプレイスに出品する
Effective Enterprise Java (Effective Software Development Series)
 
イメージを拡大
 

Effective Enterprise Java (Effective Software Development Series) [ペーパーバック]

Ted Neward
5つ星のうち 3.0  レビューをすべて見る (1 カスタマーレビュー)
価格: ¥ 4,579 通常配送無料 詳細
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
在庫あり。 在庫状況について
この商品は、Amazon.co.jp が販売、発送します。 ギフトラッピングを利用できます。
1点在庫あり。ご注文はお早めに。
2012/5/31 木曜日 にお届けします! 「お急ぎ便」オプション(有料)を選択して注文を確定された関東エリアへの配達のご注文が対象です。詳しくはこちら

キャンペーンおよび追加情報

  • 掲載画像とお届けする商品の表紙が異なる場合があります。ご了承ください。


商品の説明

内容説明

"With this book, Ted Neward helps you make the leap from being a good Java enterprise developer to a great developer!"
John Crupi, Sun Distinguished Engineer coauthor, Core J2EE Patterns

If you want to build better Java enterprise applications and work more efficiently, look no further. Inside, you will find an accessible guide to the nuances of Java 2 Platform, Enterprise Edition (J2EE) development. Learn how to:

  • Use in-process or local storage to avoid the network, see item 44
  • Set lower isolation levels for better transactional throughput, see item 35
  • Use Web services for open integration, see item 22
  • Consider your lookup carefully, see item 16
  • Pre-generate content to minimize processing, see item 55
  • Utilize role-based authorization, see item 63
  • Be robust in the face of failure, see item 7
  • Employ independent JREs for side-by-side versioning, see item 69

Ted Neward provides you with 75 easily digestible tips that will help you master J2EE development on a systemic and architectural level. His panoramic look at the good, the bad, and the ugly aspects of J2EE development will address your most pressing concerns. Learn how to design your enterprise systems so they adapt to future demands. Improve the efficiency of your code without compromising its correctness. Discover how to implement sophisticated functionality that is not directly supported by the language or platform. After reading Effective Enterprise Java, you will know how to design and implement better, more scalable enterprise-scope Java software systems.

著者について

Ted Neward is a software architect, consultant, author, and presenter who has consulted for such companies as Intuit and Pacific Bell, and UC Davis. He is the author of Server-Based Java Programming (Manning, 2000), and coauthor of C# in a Nutshell (O'Reilly, 2002) and SSCLI Essentials (O'Reilly, 2003). Ted was a member of the JSR 175 Expert Group. He now frequently speaks on the conference circuit and to user groups all over the world. He continues to develop and teach courses on Java and .NET.




登録情報

  • ペーパーバック: 496ページ
  • 出版社: Addison-Wesley Professional; 1版 (2004/8/26)
  • 言語 英語, 英語, 英語
  • ISBN-10: 0321130006
  • ISBN-13: 978-0321130006
  • 発売日: 2004/8/26
  • 商品の寸法: 25.8 x 15.3 x 2.3 cm
  • おすすめ度: 5つ星のうち 3.0  レビューをすべて見る (1 カスタマーレビュー)
  • Amazon ベストセラー商品ランキング: 洋書 - 884,755位 (洋書のベストセラーを見る)
  •  カタログ情報、または画像について報告

  • 目次を見る

この商品につけられているタグ

 (詳細)
タグをクリックすると、タグがつけられた商品、タグをつけた人が表示されます。※タグは初期設定で公開になっています。詳しくはこちら
 
(1)

 

カスタマーレビュー

星5つ
0
星4つ
0
星2つ
0
星1つ
0
最も参考になったカスタマーレビュー
5 人中、4人の方が、「このレビューが参考になった」と投票しています。
形式:ペーパーバック
"Effective Java"ほどは、新鮮な情報というわけではなかった。
"Enterprise"に関する"Effective Java"であるという視点は正しいが
どこかで日本語で見たことのある話が多く、この本でなくては、他には
ない、という程の絶対的なものではないと思う。
"Effective Java"はイディオム中心で、図がないことに違和感はないが、
この本のカバー範囲は、もっとメタな内容が多いので、
問題点を視覚化できるものが十分多く含まれていると思う。
問題点の記号化を限界まで追求しきった
"Enterprise Integration patterns"
とは対極にある一冊、英語を読むのが速い人向け。
このレビューは参考になりましたか?
Amazon.com で最も参考になったカスタマーレビュー (beta)
Amazon.com:  18個のレビュー
53 人中、43人の方が、「このレビューが参考になった」と投票しています。
Well written but of little actual value 2005/2/4
By Don R. Hanson II - (Amazon.com)
形式:ペーパーバック
I feel kind of lonely here; everyone else seemed to love this book. Looking at the table of contents, I was very excited when I started reading the book. However, while reading it cover to cover I slowly became more and more dis-illusioned with it.

The book is divided up into a number of recommendations, called items, in a manor similar to Effective C++ and Practical Java. The problem is that most of the items appear to fall into one of a few general catagories:

1) Intro level generalities of good design for the web.

e.g.

- pass data in bulk - multiple asynchronous calls out of process are more expensive than one big call

- make deployment as simple as possible - exactly what it says!

- use HttpSession sparingly - this is web application design 101

- always validate user input - my personal favorite; who today is not validating user input received from the web?

2) Using a pair of items to represent a classic design best practice.

e.g.

- Lazy-load infrequently used data & Eager-load frequently used data

- Consider using optimistic concurrency for better scalability & Consider using pessimistic concurrency for explicit concurrency control

3) Re-statements of some of the principals of secure coding

e.g.

- Security is a process, not a product

- Remember that security is not just prevention, aka "fail securely"

- Assume insecurity, aka "grant minimal trust necessary"

- Establish a threat model

My copy of this book has long been in the trash. Save your money. Here are a couple of free online articles to get you started:

Secure coding: http://www.securityfocus.com/infocus/1596

Article on stopping SQL injection: http://www.securityfocus.com/infocus/1768
10 人中、9人の方が、「このレビューが参考になった」と投票しています。
Great book and worthy successor in a wonderful series 2004/11/28
By Michael Cohn - (Amazon.com)
形式:ペーパーバック
This is an amazing book that does not disappoint in any way. It is full of wonderful well-written content. The book is organized as a series of 75 essays, each running from 1 to 10 pages. Each essay gives advice on what to do or not do in an enterprise Java application.

Since I'm not a fan of Enterprise JavaBeans, before I received the book I was worried that the "enterprise" in the title might mean the book was focused on concerns of EJB developers. That isn't the case at all and the vast majority of the book is absolutely applicable if you avoid EJB in favor of lighter-weight frameworks such as Sping.

Recently I was working with a team whose application was running out of memory and causing their application server to crash, sometimes in as little as an hour. With the help of this book's sections on the garbage collector they were able to identify and resolve the problems within a day, which was much shorter than everyone had expected.

This book is a wonderful successor to Scott Meyers' "Effective C++" and I recommend it highly.
6 人中、6人の方が、「このレビューが参考になった」と投票しています。
Effective, Efficient and Convenient 2004/10/26
By Brian Sletten - (Amazon.com)
形式:ペーパーバック
If you have had a chance to see Ted speak, you have a sense of what to expect from this book: insight, amusement and a touch of controversy. Seasoned professionals will find themselves nodding at most of the items in this book. Folks from the trenches knowing this material is good news however; you wouldn't want to be faced with a deluge of maverick advice in something donning the title "Effective". What those types of engineers will find so useful is the convenient collection and organization of advice with which they can efficiently reassess their designs, communicate with peers, etc. Far from being a simple collection of didactic nuggets, however, there is exposition and justification behind the suggestions Ted makes. More junior engineers will find a series of rungs and footholds with which to scale the wall of enterprise Java. Beyond reading techniques that make sense and learning new approaches to solving common Enterprise problems, chances are your conventional wisdom will be challenged by at least one of the recommendations (like #11 did to me).
カスタマーレビューの検索
この商品のカスタマーレビューだけを検索する

クチコミ

クチコミは、商品やカテゴリー、トピックについて他のお客様と語り合う場です。お買いものに役立つ情報交換ができます。
この商品のクチコミ一覧
内容・タイトル 返答 最新の投稿
まだクチコミはありません

複数のお客様との意見交換を通じて、お買い物にお役立てください。
新しいクチコミを作成する
タイトル:
最初の投稿:
サインインが必要です
 

クチコミを検索
すべてのクチコミを検索
   


リストマニア

リストを作成

関連商品を探す


同じキーワードの商品を探す


フィードバック


Amazon.co.jpのプライバシー ステートメント Amazon.co.jpの発送情報 Amazon.co.jpでの返品と交換