e99 Online Shopping Mall
Help | |
Home - Computer - Jsp (Books) |
  | Back | 41-60 of 100 | Next 20 |
click price to see details click image to enlarge click link to go to the store
41. Professional Linux Programming by Neil Matthew and Richard Stones, Brad Clements, Andrew Froggatt, David J. Goodger, Ivan Griffin, Jeff Licquia, Ronald van Loon, Harish Rawat, Udaya Ranawake, Marius Sundbakken, Deepak Thomas, Stephen J. Turnbull, David Woodhouse, Richard Stones, Christopher Browne | |
Paperback: 1200
Pages
(2000-09)
list price: US$59.99 -- used & new: US$16.95 (price subject to change: see help) Asin: 1861003013 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description In this follow-up to the best-selling Beginning Linux Programming, youwill learn from the authors' real-world knowledge and experience ofdeveloping software for Linux; you'll be taken through the developmentof a sample 'DVD Store' application, with 'theme' chapters addressingdifferent aspects of its implementation. Meanwhile, individual'take-a-break' chapters cover important topics that go beyond thebounds of the central theme. All focus on the practical aspects ofprogramming, showing how crucial it is to choose the right tools forthe job, use them as they should be used, and get things right firsttime. Who is this book for? Experienced Linux programmers and aspiring developers alike will finda great deal of practical information in this book on libraries,techniques, tools and applications. You should be familiar with asimple Linux system, have a good working knowledge of programming inC, and a basic understanding of object-oriented programming with C++for the Qt/KDE chapters. What does this book cover? The book is framed as a case study for building a custom database program in Linux for a video rental store. After a tour of the requirements and a brief look at project management for creating this software, the various Linux packages that are needed to implement this system are described, along with sample code, most of which is written in C. Some packages, such as the CVS version-control package, come with most distributions of Linux; others will require downloading additional software over the Internet. In every case, you're provided with the actual command-line arguments that are needed to install, configure, and run each package. Besides a great exploration of CVS for version control, this title offers excellent coverage of the free PostgreSQL and MySQL databases, which are two very popular choices for Linux databases. The book also does a good job of explaining UI design under both the GTK+/GNOME and KDE (two popular Linux desktops), and how to extend the reach of the sample database application by using Remote Procedure Calls (RPCs) and CORBA. Of course, the finished application doesn't use every Linux API that's covered here, but the book does cast a wide net, and introduces features and tools that are available. Two prominent chapters take you on a tour of the essentials of other programming languages. There's PHP for Web development and an appealing, enthusiastic introduction to Python (which probably will turn you into a Python convert). Later chapters provide practical tips for testing and debugging applications, including how to profile your code. The book closes with a useful guide to creating Red Hat Package Manager (RPM) packages for deploying applications, as well as an overview of your options for internationalization. By covering so many APIs, languages, and tools effectively, Professional Linux Programming gives experienced C/C++ programmers all that they need to get started with Linux development. With its remarkably clear presentation style and abundance of practical tips, the book is an admirably useful blueprint for building custom software. --Richard Dragan Topics covered: Customer Reviews (7)
heavy reading
Good reference
Good reference for a wide range of Open Source technologies Most topics only get a single chapter, so there isn't as much depth as you would find in a dedicated book on each topic, but there is a very wide range of material all covered in enough depth to get the more experienced programmer started with a new topic. There are one or two weaker areas, but overall a good choice of material succinctly presented for the more experienced application developer. I've given it 5 stars as it was exactly what I was looking for - a single reference to help me create a Linux-based web database application, your mileage may vary. I recommend you at least consider it.
Excellent book for developing real-world linux solutions
Not for the Kernel Hack |
42. Extreme Programming with Ant: Building and Deploying Java Applications with JSP, EJB, XSLT, XDoclet, and JUnit by Glenn Niemeyer, Jeremy Poteet | |
Paperback: 456
Pages
(2003-05-29)
list price: US$49.99 -- used & new: US$3.33 (price subject to change: see help) Asin: 0672325624 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description From the Back Cover: You¿ve heard about Extreme Programming. You might have readarticles or books describing the XP process, but what next? How doyou implement XP principles into an actual Java project? This uniquebook explains everything you need for XP development, starting withAnt, the popular Java build tool. The authors describe every stageof a real-world project life cycle¿testing, refactoring, versioning,deployment, and more¿with practical examples that you canimmediately put to use in your own projects. Every aspect of an XP project includes unique challenges, andExtreme Programming with Ant works through each step of the process. Throughout the book, the authors include dozens of ideas forextending Ant with useful custom features such as generating UMLdiagrams and creating reports and metrics on-the-fly. All code andexamples have been built, tested, and deployed using Ant 1.5.3. Customer Reviews (6)
Good book but no CD or download of example
Not a book about XP So the book concentrates on covering Ant, and starts quite promising in this regard. Using a case study to show how a build script can evolve with the needs of a project is a nice idea and the introduction to Ant is concise and to the point. Unfortunately, the book later starts to rush through the different topics, a big amount of it covering how to integrate different tools into the build process. There are also some much-less-than-optimal examples, which makes you wonder about the depth of knowledge of the authors; they even show a hand-made solution to implementing boolean attributes for custom tasks, even though Ant comes with a much more elegant inbuild mechanism. As an advanced "Ant build master", this book still taught me interesting new things about the tool. I'd guess that most beginners would be better off with a book more concentrating on the core concepts of Ant. If you want a good book on Extreme Programming, you will definitively have to look elsewhere.
Xtremely interesting
A great book on Ant and on using the XP processes in Java But I am not going to be critical -I am going to say nice things about it, and give it 5 stars as anything else would be unfair. This is a really good introduction to Extreme Programming in Java using Ant, Junit and XDoclet. After a quick intro to the concepts of XP, this book follows the story of a team that is using the XP methodology to get stuff out the door. First Ant is introduced, the JUnit -the latter being the key to test-centric development. Then as the chapters progress, the new problems are introduced and the code and the build process refactored and expanded to adapt. I particularly like the chapter where a business merger forces a team reorganisation -organisation change does effect projects, but most software engineering books ignore such events, along with team member dynamics in general. It also repeatedly reinforces the need for automated builds and tests, and has some basic coverage of CruiseControl. CC is the system that keeps our team in check: whenever you break the build, you get email. I get a lot of email. It doesn't go into significant depth in Ant -you will (of course) need the on line documentation, and I would also point my own book. Mostly this isn't an issue -the only place where I had significant differences of opinion was when the book recommended using the These are minor issues with the non-core parts of Ant and the book. The central theme of the book: using XP, JUnit, Ant and XDoclet for building, testing and deployment of server side code is well covered, and that is what matters. If you want to get into Ant, this is one of the two Ant books to consider owning -ideally you should get both :) I think I'd also get one of the XP series books, like XP installed, for a more abstract treatise on XP, Fowler's Refactoring and a copy of IntelliJ IDEA, the best XP-centric IDE for Java.
Extremely Useful Book for a Software Developer |
43. Professional JSP Site Design by Kevin Duffey, Richard Huss, Vikram Goyal, Ted Husted, Meeraj Kunnumpurath, Lance Lavandowska, Sathya Narayana Panduranga, Krishnaraj Perrumal, Joe Walnes | |
Paperback: 1000
Pages
(2001-10-31)
-- used & new: US$62.81 (price subject to change: see help) Asin: B0000B0SXW Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description This book is designed to take you from a basic knowledge of the JSP and Servlet technologies to a deeper understanding of how best to implement core web site features such as dynamic navigation, page layout, and content management; potentially tricky subjects like managing frames are analyzed and the best approach discussed. The approach is pragmatic: where an open source component exists that provides the necessary functionality, we'll show you how best to integrate it into your own applications rather than inventing your own. This book covers: The Apache Struts Framework for Java-based web applications Customer Reviews (6)
Completely satisfied with the purchase
very good But all the chapters are good even though it was written by different authors. The section on refactoring in the beginning set the tone of the book. Good authors. Would recommend this book to anyone working with jsps. Very easy language to understand too. The reason I gave it a 4 is 'coz I understood it more only after I began working with jsps for a while.
Good ideas, bad explinations
Great ideas, bad explinations
Learn more advanced about Jsp with other techniques. Many JSP developers will want to read this book to learn about Struts and other This is not the kind of book you would read from start to finish but as a quick |
44. Exodus Story in the Wisdom of Solomon: A Study in Biblical Interpretation (JSP Supplements) by Samuel Cheon | |
Hardcover: 176
Pages
(1997-07-01)
list price: US$145.00 -- used & new: US$13.00 (price subject to change: see help) Asin: 1850756708 Canada | United Kingdom | Germany | France | Japan | |
45. Revealed History (JSP Supplements) by R. G. Hall, Robert G. Hall | |
Hardcover: 200
Pages
(1991-06)
list price: US$130.00 -- used & new: US$74.87 (price subject to change: see help) Asin: 1850752494 Canada | United Kingdom | Germany | France | Japan | |
46. From Death to Life (JSP Supplements) by Randall D. Chesnutt | |
Hardcover: 308
Pages
(1995-01)
list price: US$84.00 -- used & new: US$33.49 (price subject to change: see help) Asin: 1850755167 Canada | United Kingdom | Germany | France | Japan | |
47. Java Developer's Guide to Servlets and JSP by William B. Brogden, Bill Brogden | ||
Paperback: 432
Pages
(1900-10)
list price: US$49.99 -- used & new: US$27.07 (price subject to change: see help) Asin: B00007FYGQ Average Customer Review: Canada | United Kingdom | Germany | France | Japan | ||
Editorial Review Product Description This book's approachability is a major strength. Sure, there's plenty of useful expertise on display here, but the author doesn't get bogged down in too much detail. After showing off the fundamentals of servlets and JSPs, including basic syntax, this book uses simple and effective examples that show off these APIs at work. Several versions of a chat application are used to show off different strategies for maintaining "state" within JSPs using hidden form variables, cookies, and the JSP session object. (The same code gets enhanced with sockets and RMI later in the book.) This comparative approach is useful for seeing the advantages and differences of each programming strategy. This title also delves into APIs that are essential for Web developers today. There's an excellent introduction to XML here, plus a chapter on JDBC for database programming. In a standout section on getting JSPs and Perl scripts to work together, the author shows how JSP code can invoke Perl scripts and retrieve their results. The book closes with a comprehensible example on JSP tag libraries, and how to use servlets and applets together, as well as a truly useful listing of all of the relevant servlet and JSP APIs in an appendix. There's even a glossary to help demystify key terms for the beginning JSP developer. In all, besides providing a capable tutorial to the basics, this title offers good coverage on related Java-base Web development APIs and techniques that'll help make you more productive in the field. Java Developer's Guide to Servlets and JSP is a smart and thoroughly approachable choice for getting started with servlets and JSP development. --Richard Dragan Topics covered: Customer Reviews (4)
Servlet and JSP guide
Just Great
Great Book for Intermediates
Good Book for the number of pages Working knowledge in XML, HTML and JAVA definitely increased my ability to pick up the topics quite easily. It is quite imperative to work through the examples if you wish to be able to learn and understand the basics before you tackle the more advanced topics. ... Read more |
48. Apocalyptic in History and Tradition (JSP Supplements) by John Barton, Christopher C. Rowland | |
Hardcover: 352
Pages
(2003-03-01)
list price: US$240.00 -- used & new: US$160.93 (price subject to change: see help) Asin: 0826462081 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
49. Five Fragments of the Apocryphon of Ezekiel (JSP Supplements) by James R. Mueller | |
Hardcover: 196
Pages
(1994-01)
list price: US$59.00 -- used & new: US$12.36 (price subject to change: see help) Asin: 1850751951 Canada | United Kingdom | Germany | France | Japan | |
50. Software Security -- Theories and Systems: Mext-NSF-JSPS International Symposium, ISSS 2002, Tokyo, Japan, November 8-10, 2002, Revised Papers (Lecture Notes in Computer Science) | |
Paperback: 471
Pages
(2003-04-10)
list price: US$72.95 -- used & new: US$65.90 (price subject to change: see help) Asin: 3540007083 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description For more than the last three decades, the security of software systems has been an important area of computer science, yet it is a rather recent general recognition that technologies for software security are highly needed. This book assesses the state of the art in software and systems security by presenting a carefully arranged selection of revised invited and reviewed papers. It covers basic aspects and recently developed topics such as security of pervasive computing, peer-to-peer systems and autonomous distributed agents, secure software circulation, compilers for fail-safe C language, construction of secure mail systems, type systems and multiset rewriting systems for security protocols, and privacy issues as well. |
51. Pro JSP, Third Edition by Simon Brown, Sam Dalton, Daniel Jepp, Dave Johnson, Sing Li, Matt Raible | |
Paperback: 624
Pages
(2003-09-10)
list price: US$59.99 -- used & new: US$1.20 (price subject to change: see help) Asin: 1590592255 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Simpler, faster, easier dynamic website development based on new additions to an established and proven technology&emdash;that's what JavaServer Pages (JSP) 2.0 is all about. Pro JSP, Third Edition is the most comprehensive guide and reference to JSP 2.0 yet. It equips you with the tools, techniques, and understanding you need to develop web applications with JSP and Java servlets. The new features of the JSP 2.0 and Servlet 2.4 specifications make developing web applications easier than ever before. The new JSP Expression Language (EL) provides a new, simple language for creating JSP pages and tags. In addition, by also using the JSP Standard Tag Library (JSTL), you'll never have to use a Java scriptlet or write spaghetti code again. Beyond covering the JSP and Servlet APIs, this book shows you how to choose and implement the best persistence option for your web applications; how to secure your web sites against malicious attack and accidental misuse; how to improve the performance and scalability of your JSP pages; and how to architect and design your applications to be reliable, stable, and maintainable through the use of design patterns and best practices. Finally, no JSP book would be complete today without looking at the role that open source projects such as Ant, Struts, XDoclet, JUnit, and Cactus can play in making your web development even easier. Customer Reviews (2)
Excellent Book for All Levels `Pro JSP' is probably one of the best books on JSP that I have read in a long time. To me a good technical book needs to do three things. First it needs to explain how the technology works. Second, it needs to explain how best to use this technology in the real world. And finally, it needs to do the first two things in a clear and understandable manner. The reader shouldn't be left scratching their head trying to figure out what the author was trying to say. On the first point, `Pro JSP' does a thorough job of explaining the ins and outs of the JSP 2.0 release. The expression language, JSTL, tags, filtering, security, deployment; all of these important topics are covered.There are an amazing three chapters devoted to tags and another two chapters on filtering! The authors do an excellent job of focusing in on some of the more complex aspects of JSP and spending the time to fully explain all the nuances. Based on just the technical content alone, a person will walk away from this book with a solid understanding of the power available to them with JSP 2.0. But of course `JSP Pro' doesn't just end there. Unlike many books that simply throw a ton of information at you and then leave you to figure out how to use it, this book goes much further. The authors spend a considerable amount of time discussing the best practices to use when including this technology in your applications. From repeatedly hammering home the need to keep scriplets out of JSP pages, to the chapters devoted to web application patterns and performance enhancements, the reader will be left well prepared to use their newly acquired skills on their own projects. The writing itself is also very well done. The examples are short and to the point, and the writing is clear and understandable. I never found myself struggling to understand what the author was trying to convey, or tripping over complicated code to see the examples in action. The only caveat I would have would be with the last chapter dealing with using `Struts, Xdoclet, and Other Tools'. The authors recommend that the reader have an understanding of these tools before reading the chapter. They then dive right in to how to best use these tools without a lot of explanation. This may be just a little too much for someone coming to this book as a complete beginner to JSP. This chapter will of course prove invaluable to a more experienced programmer, but the abrupt change of pace from the rest of the book felt a little uneven. All in all I would definitely recommend this book to JSP programmers of all levels.
Good Book, A lot of information but not a beginner book |
52. Program Design Using JSP: A Practical Introduction (Macmillan Computer Science) by M.J. King, J.P. Pardoe | |
Paperback: 301
Pages
(1992-06-15)
-- used & new: US$41.99 (price subject to change: see help) Asin: 0333576748 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
53. Parallel Programming Systems: Proceedings of a Jsps Seminar Tokyo, Japan 27-29 May 1992 by C. K. Yuen | |
Hardcover: 300
Pages
(1993-09)
list price: US$75.00 Isbn: 9810213204 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
54. Software Security - Theories and Systems: Second Mext-WSF-JSPS International Symposium, ISSS 2003, Tokyo, Japan, November 4-6, 2003 (Lecture Notes in Computer Science) | |
Paperback: 345
Pages
(2004-11-23)
list price: US$72.00 -- used & new: US$27.64 (price subject to change: see help) Asin: 354023635X Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description This book constitutes the thoroughly refereed post-proceedings of the Second Mext-NSF-JSPS Interntional Symposium on Software Security, ISSS 2003, held in Tokyo, Japan in November 2003. The 18 revised full invited and selected papers presented were carefully reviewed and improved for inclusion in the book. The papers are organized in topical sections on analysis of protocols and cryptography, verification of security properties, safe implementation of programming languages, secure execution environments, and secure systems and security management. |
55. JSP. Einführung in die Methode des Jackson Structured Programming. by Klaus Kilberth | |
Paperback: 389
Pages
(2001-09-01)
-- used & new: US$40.57 (price subject to change: see help) Asin: 3528745762 Canada | United Kingdom | Germany | France | Japan | |
56. JSP: JavaServer Pages by Barry A. Burd | |
Paperback: 427
Pages
(2001-04)
list price: US$29.99 -- used & new: US$3.88 (price subject to change: see help) Asin: 0764535358 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (7)
Excellence JSP Introductory Book for Novice Pros: Cons:
Good Intention Falls Just Short Though the book seems to be directed at those with no previous knowledge of the field, I found it assumed much, and while I can't say I learned nothing about JSP and the Java language, I didn't come away from this book with much more than a handfull of features of either, and a few vague ideas and definitions.Put differently, he skips much crucial information for those who really haven't had any exposure to JSP or Java. Perhaps after I learn Java this book will have more meaning for me - as such, I can't recommend it to anyone setting out to learn JSP.Though for those with a bit more background - go ahead, give it a whirl, it could be just what you're looking for.
Thumbs Up
Great Intro To JSP One more point-- if you're an experience Java programmer, don't be put off by the fact that he explains elementary Java along the way. Those parts are easily skimmed over. This is the fastest way to get into the essence of JSP that you'll find.
Excellent Basics |
57. The Pseudepigrapha and Early Biblical Interpretation (Jsp Supplement) by James H. Charlesworth | |
Hardcover: 319
Pages
(1994-05)
list price: US$107.00 Isbn: 1850754438 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Customer Reviews (1)
A Fascinating Insight It isinteresting to note the possible (dis)connection between the Apostle Pauland his theory of sin entering the world through one man and the teachingin the book of Sirach that sin enters the world through the woman.Perhapsboth are true?Or, perhaps, Paul was trying to address an issue that hefelt was untrue? This is one of the books that puts early Christianity inits context more than many of the others because works such as Sirach are,in this book, evaluated as being just as important and relevant as the"canon" of Scripture itself. For those interested in earlyChristianity, early Judaism, the "canon" of the Bible, and thewritings of the New Testament in the context they were written in, this isan essential piece of literature to have. ... Read more |
58. JSP, JavaServer Pages by Helmut Balzert | |
Paperback:
Pages
(2003-01-01)
-- used & new: US$11.59 (price subject to change: see help) Asin: B001FTD53E Canada | United Kingdom | Germany | France | Japan | |
59. Epistle of Second Baruch: A Study in Form and Message (JSP Supplements) by Mark Whitters | |
Hardcover: 216
Pages
(2003-05-01)
list price: US$180.00 -- used & new: US$20.00 (price subject to change: see help) Asin: 0826462162 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
60. EJB & JSP: Java on the Edge by Lou Marco | |
Paperback: 408
Pages
(2001-09)
list price: US$39.99 -- used & new: US$0.48 (price subject to change: see help) Asin: 0764548026 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description The first section discusses J2EE in more depth, with special emphasis on how and where JSP and EJB fit in. The second section covers JavaServer Pages including numerous JSP examples. The book provides the JSP's for the main application developed and dissected, a hotel booking application. The final part covers Enterprise JavaBeans. The bulkof this section is creating and analyzing EJBs to work with the JSPs developed earlier in the book. By the end of the book, the hotel booking application is complete. This Unlimited Edition stays up to date long after other publications. A companion Web site includes all the code and examples from the book, and is updated to include new chapters, programs, and other related material. Customer Reviews (2)
Weak and incomplete In other words, this book lost my trust.If you buy it, read it for the solid explanations of the concepts around jsp's, servlets, tag libraries, and EJB's--but don't expect the examples to work.And have your environment already set up, because this book won't guide you through that.
I want to see this book |
  | Back | 41-60 of 100 | Next 20 |