Apache Tomcat 7 Posted: 27 Dec 2011 11:29 AM PST Book Description Apache Tomcat is the most popular open-source de-facto Java Web application server, standard for today’s Web developers using JSP/Servlets. Apache Tomcat 7 covers details on installation and administration of Apache Tomcat 7. It explains key parts of the Tomcat architecture, and provides an introduction to Java Servlet and JSP APIs in the context of the Apache Tomcat server. In addition to basic concepts and administration tasks, Apache Tomcat 7 covers some of the most frequently used advanced features of Tomcat, including security, Apache web server integration, load balancing, and embedding Tomcat server in Java applications. Finally, through a practical primer, it shows how to integrate and use some of the most popular Java technologies with Apache Tomcat. In summary, Apache Tomcat 7 offers both novice and intermediate Apache Tomcat users a practical and comprehensive guide to this powerful software. What you'll learn - Install and set up Tomcat 7 on Windows and Unix platforms
- Manage and deploy application deployed on Tomcat 7 using Manager Application
- Secure Tomcat 7 server using security realms or HTTPS protocol
- Embed Tomcat 7 server into your desktop Java application
- Efficiently configure Tomcat 7 with Apache Web server
- Configure data sources and mail sessions using JNDI in Tomcat
- Configure logging for web applications deployed on Tomcat server
Who this book is for This book is for those Web developers and/or Java programmers new to the open-source Apache Tomcat Web server. It’s also for those new to the latest release, version 7. Table of Contents - Introduction to Apache Tomcat 7
- Deploying Web Applications to Tomcat
- Servlets, JSPs, and ServletContext
- Using Tomcat’s Manager Web Application
- HTTP Sessions
- Configuring Security Realms
- Securing Tomcat with SSL
- Valves and Servlet Filters
- Embedding Tomcat
- Integrating Apache Web Server
- Integrating Spring MVC Framework
- Logging in Tomcat
- Configuring JNDI in Tomcat
- Server.xml File
- The Web.xml File
Book Details - Paperback: 296 pages
- Publisher: Apress (September 2011)
- Language: English
- ISBN-10: 1430237236
- ISBN-13: 978-1430237235
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Data Structures and Algorithms in C++, 2nd Edition Posted: 27 Dec 2011 11:28 AM PST Book Description An updated, innovative approach to data structures and algorithms Written by an author team of experts in their fields, this authoritative guide demystifies even the most difficult mathematical concepts so that you can gain a clear understanding of data structures and algorithms in C++. The unparalleled author team incorporates the object-oriented design paradigm using C++ as the implementation language, while also providing intuition and analysis of fundamental algorithms. - Offers a unique multimedia format for learning the fundamentals of data structures and algorithms
- Allows you to visualize key analytic concepts, learn about the most recent insights in the field, and do data structure design
- Provides clear approaches for developing programs
- Features a clear, easy-to-understand writing style that breaks down even the most difficult mathematical concepts
Building on the success of the first edition, this new version offers you an innovative approach to fundamental data structures and algorithms. Table of Contents 1. Basic C++ Programming. 2. Object-Oriented Design. 3. Analysis Tools. 4. Stacks, Queues, and Recursion. 5. Vectors, Lists, and Sequences. 6. Trees. 7. Priority Queues. 8. Dictionaries. 9. Search Trees. 10. Sorting, Sets, and Selection. 11. Text Processing. 12. Graphs. A. Useful Mathematical Facts. Book Details - Paperback: 744 pages
- Publisher: Wiley; 2nd Edition (February 2011)
- Language: English
- ISBN-10: 0470383275
- ISBN-13: 978-0470383278
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
An Introduction to Object-Oriented Programming with Java, 5th Edition Posted: 27 Dec 2011 11:28 AM PST Book Description An Introduction to Object-Oriented Programming with Java takes a full-immersion approach to object-oriented programming. Proper object-oriented design practices are emphasized throughout the book. Students learn how to use the standard classes first, then learn to design their own classes. Wu uses a gentler approach to teaching students how to design their own classes, separating the coverage into two chapters. GUI coverage is also located independently in the back of the book and can be covered if desired. Wu also features a robust set of instructors’ materials including PowerPoint slides, code samples, and quiz questions. Table of contents Chapter 0. Introduction to Computers and Programming Languages Chapter 1. Introduction to Object-Oriented Programming and Software Development Chapter 2. Getting Started with Java Chapter 3. Numerical Data Chapter 4. Defining Your Own Classes – Part 1 Chapter 5. Selection Statements Chapter 6. Repetition Statements Chapter 7. Defining Your Own Classes – Part 2 Chapter 8. Exceptions and Assertions Chapter 9. Characters and Strings Chapter 10. Arrays and Collections Chapter 11. Sorting and Searching Chapter 12. File Input and Output Chapter 13. Inheritance and Polymorphism Chapter 14. GUI and Event-Driven Programming Chapter 15. Recursive Algorithms Appendix A. How to Run Java Programs Appendix B. Sample Programs Appendix C. Standard Classes and Interfaces Appendix D. UML Diagrams Book Details - Paperback: 1008 pages
- Publisher: McGraw-Hill Osborne Media; 5th Edition (March 2009)
- Language: English
- ISBN-10: 0073523305
- ISBN-13: 978-0073523309
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
C++ Programming: Program Design Including Data Structures, 5th Edition Posted: 27 Dec 2011 11:28 AM PST Book Description C++ Programming: Program Design Including Data Structures remains the definitive text for the CS1/CS1 course sequence. In this new fifth edition, D.S. Malik continues to employ his student-focused, example-based methodology to teach C++ Programming to introductory computing students. Changes to this edition include new debugging sections in each chapter and a multitude of new and updated exercises. All syntax is explained thoroughly and reinforced through extensive examples and diagrams, and each chapter is full of helpful self-study tools such as complete programming examples. C++ Programming: Program Design Including Data Structures will motivate to students to understand the “why?” behind key C++ concepts. - Intended for a two-semester CS1/CS2 sequence, beginning with introductory topics and moving into data structures later in the text.
- Programming examples accurately outline the concrete stages of Input, Output, Problem Analysis, and Algorithm Design, and include a Complete Program Listing.
- A full-color interior displays precise C++ code and comments.
- More than 300 visual diagrams illuminate difficult concepts.
- Numbered examples throughout every chapter illustrate key topics with their relevant code, and are followed by a Sample Run and explanation.
Table of Contents 1. An Overview of Computers and Programming Languages. 2. Basic Elements of C++. 3. Input/Output. 4. Control Structures I (Selection). 5. Control Structures II (Repetition). 6. User-Defined Function I. 7. User-Defined Functions II. 8. User-Defined Simple Data Types, Namespaces, and the string Type. 9. Arrays and Strings. 10. Records (structs). 11. Classes and Data Abstraction. 12. Inheritance and Composition. 13. Pointers, Classes, Virtual Functions, Abstract Classes, and Lists. 14. Overloading and Templates. 15. Exception Handling. 16. Recursion. 17. Linked Lists. 18. Stacks and Queues. 19. Searching and Sorting Algorithms. 20. Binary Trees. 21. Graphs. 22. Standard Template Library. Appendices. A. Reserved Words. B. Operator Precedence. C. Character Sets. D. Operator Overloading E. Additional C++ Topics. F. Header Files. G. Memory Size on a System and Random Number Generators. H. References I. Answers to Odd-Numbered Exercises. Book Details - Paperback: 1575 pages
- Publisher: Course Technology; 5th Edition (April 2010)
- Language: English
- ISBN-10: 0538798092
- ISBN-13: 978-0538798099
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Office 2010: Advanced Posted: 27 Dec 2011 09:38 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Office 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In MICROSOFT OFFICE 2010: ADVANCED you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Office 2010 software through experimentation, exploration, and planning ahead. Brand new end of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. - A step-by-step, screen-by-screen approach allows students to successfully learn and retain information to be used in their personal and professional lives
Table of Contents MICROSOFT WORD 2010. 1. Creating a Document with a Title Page, Lists, Tables, and a Watermark. 2. Using a Template to Create a Resume and Sharing a Finished Document. 3. Generating Form Letters, Mailing Labels, and a Directory. 4. Creating a Newsletter with a Pull-Quote and Graphics. MICROSOFT POWERPOINT 2010. 1. Working with Information Graphics. 2. Collaborating on and Delivering a Presentation. 3. Navigating Presentations Using Hyperlinks and Action Buttons. 4. Creating a Self-Running Presentation Containing Animation. MICROSOFT EXCEL 2010. 1. Financial Functions, Data Tables, and Amortization Schedules. 2. Creating, Sorting, and Querying a Table. 3. Working with Multiple Worksheets and Workbooks. 4. Creating Templates, Importing Data, and Working with SmartArt, Images, and Screen Shots. MICROSOFT ACCESS 2010. 1. Creating Reports and Forms. 2. Multitable Forms. 3. Advanced Report Techniques. 4. Using SQL. MICROSOFT OUTLOOK 2010. 1. Managing Contacts and Personal Contact Information with Outlook. Appendices. A: Project Planning Guidelines. B: Publishing Office 2010 Web Pages Online. C: Saving to the Web Using Windows Live SkyDrive. Capstone Project. Book Details - Paperback: 1216 pages
- Publisher: Course Technology (December 2010)
- Language: English
- ISBN-10: 1439078548
- ISBN-13: 978-1439078549
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Office 2010: Introductory Posted: 27 Dec 2011 09:38 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Office 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In Microsoft Office 2010: Introductory you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Office 2010 software through experimentation, exploration, and planning ahead. Brand new end of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. - The proven Shelly Cashman Pedagogy of step-by-step, screen-by-screen instruction with a project orientation to teach introductory Office 2010 skills.
- Gives students an introduction to the core Microsoft Office 2010 applications, computer concepts, Windows Vista, Outlook, and integration skills using the highly-successful Shelly Cashman Series pedagogy.
- Engages students with new Experimental steps, which encourage them to go beyond step-by-step instructions to take advantage of the features in the Microsoft Office 2010 new user interface.
Table of Contents Introduction to Computers. Office 2010 and Windows 7: Essential Concepts and Skills Word 2010. 1. Creating, Formatting, and Editing a Word Document with a Picture. 2. Creating a Research Paper with Citations and References. 3. Creating a Business Letter with a Letterhead and Table. Excel 2010. 1. Creating a Worksheet and an Embedded Chart. 2. Formulas, Functions, and Formatting. 3. What-If Analysis and Working with Large Worksheets. Access 2010. 1. Creating and Using a Database. 2. Querying a Database. 3. Maintaining a Database. PowerPoint2010. 1. Creating and Editing a Basic Presentation. 2. Enhancing a Presentation with Pictures and Shapes. 3. Reusing a Presentation and Adding Multimedia. Outlook 2010. 1. Using Email and Working with Messages. 2. Managing Your Time Using Calendar. Appendices. A: Project Planning Guidelines. B: Microsoft Business Certification Program. C: Publishing Office 2010 Web Pages to a Web Server. D: Web Apps Appendix E: APA Appendix Capstone projects. Book Details - Paperback: 1176 pages
- Publisher: Course Technology (August 2010)
- Language: English
- ISBN-10: 1439078408
- ISBN-13: 978-1439078402
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Access 2010: Complete Posted: 27 Dec 2011 09:23 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Access 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In Microsoft Access 2010: Complete you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Access 2010 software through experimentation, exploration, and planning ahead. Brand new end of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. - A step-by-step, screen-by-screen approach allows students to successfully learn and retain information to be used in their personal and professional lives
- Increases students’ retention with brand new end-of-chapter exercises, including Make It Right, Extend Your Knowledge, and Make It Personal, which emphasize problem-solving and experimentation.
Table of Contents Access Common Elements. 1. Databases and Database Objects: An Introduction. 2. Querying a Database. 3. Maintaining a Database. 4. Creating Reports and Forms. 5. Multi-Table Forms. 6. Advanced Report Techniques. 7. Using SQL. 8. Advanced Form Techniques. Appendices. A: Project Planning Guidelines. B: Publishing Office 2010 Web Pages to a Web Server. Book Details - Paperback: 464 pages
- Publisher: Course Technology (September 2010)
- Language: English
- ISBN-10: 0538748621
- ISBN-13: 978-0538748629
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Excel 2010: Introductory Posted: 27 Dec 2011 09:23 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Excel 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In Microsoft Excel 2010: Introductory you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Excel 2010 software through experimentation, exploration, and planning ahead. End of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents giving them skills to use in both their personal and professional lives. - Gives students an introductory presentation of Excel 2010, including new features of the software, using the highly-successful Shelly Cashman Series pedagogy.
- A step-by-step, screen-by-screen approach allows students to successfully learn and retain information to be used in their personal and professional lives.
- New opening chapter presents essential Office 2010 and Windows® 7 skills preventing repetitive coverage of basic skills in the applications chapters and providing students with a strong base for further learning.
Table of Contents Office 2010 and Windows 7: Essential Concepts and Skills 1. Creating a Worksheet and an Embedded Chart. 2. Formulas, Functions, and Formatting. 3. What-If Analysis, Charting, and Working with Large Worksheets. Appendices. A: Project Planning Guidelines. B: Publishing Office 2010 Web Pages Online. C: Saving to the Web Using Windows Live SkyDrive. Book Details - Paperback: 328 pages
- Publisher: Course Technology (July 2010)
- Language: English
- ISBN-10: 1439078467
- ISBN-13: 978-1439078464
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Word 2010: Introductory Posted: 27 Dec 2011 09:22 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Office 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In MICROSOFT WORD 2010: INTRODUCTORY you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Word 2010 software through experimentation, exploration, and planning ahead. Brand new end of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. - Gives students an introductory presentation of Word 2010, including new features of the software, using the highly-successful Shelly Cashman Series pedagogy.
- Engages students with new Experimental steps, which encourage them to go beyond step-by-step instructions to take advantage of the features in the Microsoft Office 2010 new user interface.
- A brand new introduction to Windows 7 and Introduction to Office chapter presents students with an overview of the latest in the Windows operating system and the Office suite giving them a strong base for further learning.
- Additional appendix found only in Word.
Table of Contents Introduction to Windows 7 and Microsoft Office 2010. 1. Creating, Formatting, and Editing a Word Document with a Picture. 2. Creating a Research Paper with Citations and References. 3. Creating a Business Letter with a Letterhead and Table. Web Apps for Word. Appendices. A: Project Planning Guidelines. B: Publishing Office 2010 Web Pages to a Web Server. C: Microsoft Business Certification Program. Index/Quick Reference. Book Details - Paperback: 344 pages
- Publisher: Course Technology (July 2010)
- Language: English
- ISBN-10: 1439078459
- ISBN-13: 978-1439078457
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Microsoft Publisher 2010: Introductory Posted: 27 Dec 2011 09:22 AM PST Book Description Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Publisher 2010, we’re continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today’s students. In Microsoft Publisher 2010: Introductory you’ll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Publisher 2010 software through experimentation, exploration, and planning ahead. Brand new end of chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. - Gives students an introductory presentation of Publisher 2007, including new features of the software, using the highly successful Shelly Cashman Series pedagogy.
- Offers a new Plan Ahead feature that prepares students to create successful projects by encouraging them to think about what they are trying to accomplish before they begin.
- Gives students the information they need to know, when they need to know it through enhancements to the step-by-step instructions, a new Q&A feature, and improved callouts on screenshots.
- Engages students with new Experimental steps, which encourage them to go beyond step-by-step instructions to take advantage of the features in the Microsoft Office 2007 new user interface.
Table of Contents Office 2010 and Windows 7: Essential Concepts and Skills. 1. Creating a Flyer. 2. Publishing a Tri-Fold Brochure. 3. Designing a Newsletter. Appendices: A: Project Planning Guidelines. B: Publishing Office 2010 Web Pages to a Web Server. Book Details - Paperback: 296 pages
- Publisher: Course Technology (August 2010)
- Language: English
- ISBN-10: 0538746173
- ISBN-13: 978-0538746175
Note: There is a file embedded within this post, please visit this post to download the file. Related Posts
|
Tidak ada komentar:
Posting Komentar