Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Module Name Subtitle.

Slides:



Advertisements
Similar presentations
CLICK HERE TO ADD SLIDE PRESENTATION TITLE CLICK HERE TO ADD SUBTITLE.
Advertisements

Title Would Go Here Subtitle added here Header for these bullets First bullet point Second Bullet Third Bullet Fourth Bullet Fifth bullet Sixth point.
Winter 2007ACS-3913 Ron McFadyen1 Singleton To guarantee that there is at most one instance of a class we can apply the singleton pattern. Singleton Static.
Internationalization and the Java Stack Matt Wheeler.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Understanding the Bean Lifecycle An.
TDDD05 EJB Lab (Part of slides reused from Mikhail’s) Lu Li
Slide Header, 36 pt. dark gray When using this template, please follow the identity guidelines found at
Name of Presenter Presenter’s Title Presenter Disclosure text here presenter disclosure text here presenter disclosure text here Presenter Disclosure.
United Press International. From the New York Times. All rights reserved. Used by permission and protected by the Copyright Laws of the United States.
Copyright © 2006 Mark Logic Corporation. All rights reserved.
Title of your presentation goes here Subtitle if needed Your name Social Partnerships in Learning Research Consortium Charles Darwin University.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Forms with Spring MVC Handling Form.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Introduction to Spring Remoting Simplifying.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Spring MVC Views Rendering custom views.
The Choices Program curriculum units and the contents of the electronic versions are copyrighted— 1989-present. These copyright protections extend to all.
Highlight this text & type in your poster title (44pt recommended) Highlight this text and replace with the authors. You can select to make the text smaller.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Spring MVC Essentials Getting started.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Testing Spring Applications Unit Testing.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Introduction to Data Access with Spring.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Spring AOP – Part 2 Advanced Aspect-Oriented.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Overview of the Spring Framework Introducing.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Introduction to Spring JDBC Simplifying.
Name of Presenter Presenter Disclosure text here presenter disclosure text here presenter disclosure text here Presenter Disclosure text here presenter.
Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Developing Rich Web Applications with.
Title 36pt Arial Bold Subtitle (Name) 28pt Arial Italics.
Presentation title Presentation subtitle.
Main presentation title Second title line if required
Internationalization
Title Here, 40pt, Arial, 1 line
Click to Add Title Click to Add Subtitle.
Presenter Name, ASLA, Firm name
Include everyone’s name Picture optional
Insert Presentation Title Here Insert Presentation Summary Here
Title of Tutorial list the Authors and affiliations here
Presentation Title Up to 3 Lines of Text. Lorem Ipsum Delorum
Title Slide Alternative 1
Sample Title for a W. P. Carey Presentation
Your Title Goes Here (and your subtitle here)
Title Layout Subtitle.
Title Slide Alternative 1
Sample Title for a W. P. Carey Presentation
Your Title Goes Here (and your subtitle here)
Subhead text can go here
Title of the presentation
Slide Title Edit Master text styles Second level Third level
Your Title Goes Here (and your subtitle here)
Title Slide Alternative 1
Title to go here Subtitle to go here.
YOUR TITLE HERE SUBTITLE HERE.
Subtitle (Name) 28pt Arial Italics
Your Title Goes Here (and your subtitle here)
Sample Title for a W. P. Carey Presentation
Sample Title for a W. P. Carey Presentation
Title list the Authors and affiliations here Optional Company Logo
Your Title Goes Here (and your subtitle here)
Presentation Title Presenter’s Name.
Your Title Goes Here (and your subtitle here)
Insert Presentation Title Here Insert Presentation Summary Here
Put the title here Here is the sub-title.
Put the title here Here is the sub-title.
Title of the Session Subtitle if Applicable
Title of Presentation (your names).
Your Title Goes Here (and your subtitle here)
Main Title Here Topic 2 Topic 3 Topic 4 Topic 5
Subtitle (Name) 28pt Arial Italics
Insert Presentation Title Here Insert Presentation Summary Here
4 Step Simple Diagram Sample text Sample text Sample text Sample text
PRESENTER GOES HERE SERVICE LINE GOES HERE (BOTH IN ALL CAPS)
TİTLE SUBTİTLE.
TİTLE SUBTİTLE.
Presentation transcript:

Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Module Name Subtitle

2 Topics in this Session Topic 1 Topic 2

3 Topics in this Session Topic 1 Topic 2

4 A Slide With Some Points Most slides will have 24 pt top-level text –However, go for 28 pt if there is little text on the slide This is a point And another one –Second level (20 or 24 pt) Third level (18 or 20 pt) –Try to avoid any fourth or lower level (16 or 18) Try to split heavy slides with lots of text into two

5 Code Sample - Small Here’s a code sample // This is Helvetica: 18 pt or higher please public class TransferServiceImpl implements TransferService { public TransferServiceImpl(AccountRepository ar) { this.accountRepository = ar; } … } // This is Helvetica: 18 pt or higher please public class TransferServiceImpl implements TransferService { public TransferServiceImpl(AccountRepository ar) { this.accountRepository = ar; } … }

6 Code Sample - Large public void TransferServiceTests extends TestCase { private TransferService service; protected void setUp() { // Create the application from the configuration ApplicationContext context = new ClassPathXmlApplicationContext( “ application-config.xml ” ); // Look up the application service interface service = (TransferService) context.getBean( “ transferService ” ); } public void testMoneyTransfer() { Confirmation receipt = service.transfer(new MonetaryAmount( “ ” ), “ 1 ”, “ 2 ” )); assertEquals(receipt.getNewBalance(), “ ” ); } … } public void TransferServiceTests extends TestCase { private TransferService service; protected void setUp() { // Create the application from the configuration ApplicationContext context = new ClassPathXmlApplicationContext( “ application-config.xml ” ); // Look up the application service interface service = (TransferService) context.getBean( “ transferService ” ); } public void testMoneyTransfer() { Confirmation receipt = service.transfer(new MonetaryAmount( “ ” ), “ 1 ”, “ 2 ” )); assertEquals(receipt.getNewBalance(), “ ” ); } … } This is a labelAnother label

7 Code Sample - XML

8 Code Sample - Code and XML The code box is a little darker public class LegacySingleton { private LegacySingleton() {... } public static LegacySingleton getInstance() { … } public class LegacySingleton { private LegacySingleton() {... } public static LegacySingleton getInstance() { … } <bean id=“singleton” class=“example.LegacySingleton” factory-method=“getInstance” /> <bean id=“singleton” class=“example.LegacySingleton” factory-method=“getInstance” />

9 Code Sample - public class PropertyChangeLogger { private Logger logger = set*(*))”) public void setOperation() public void logChange() { logger.info(“Property about to change…”); } }

10 A Class Diagram ResourceLoader > MessageSource > ApplicationEventPublisher > ApplicationContext > getResource(String)publishEvent(AppEvent) getBean(String) getMessage(String)

11 A Sequence Diagram Service invoke(“input”) confirmation Repository getObject(“criteria”) getConnection() Infrastructure

12 An Object Interaction Diagram Object call invoke call Object 123

13 Application Context A Configuration Diagram Application Service Repository 2 Data Source Repository 1 Repository 3

14 Summary Topic 1 Topic 2

Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Demo Demo Title

Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Lab Lab Title