+ - 0:00:00
Notes for current slide
Notes for next slide

Day 2

Gradle, TDD

1 / 18

Building Your Application

What does it take to build your Java application?

2 / 18

Building Your Application

What does it take to build your Java application?

  • Your Java code has to be compiled
2 / 18

Building Your Application

What does it take to build your Java application?

  • Your Java code has to be compiled
  • Finding and organizing code files you didn’t write (third party files)
2 / 18

Building Your Application

What does it take to build your Java application?

  • Your Java code has to be compiled
  • Finding and organizing code files you didn’t write (third party files)
  • CSS, HTML, and JavaScript if you are making a web app
2 / 18

Building Your Application

What does it take to build your Java application?

  • Your Java code has to be compiled
  • Finding and organizing code files you didn’t write (third party files)
  • CSS, HTML, and JavaScript if you are making a web app
  • Misc files: csv, database, settings...
2 / 18

Third Party Libraries

3 / 18

Third Party Libraries

  • Have to be downloaded and referenced in your code
3 / 18

Third Party Libraries

  • Have to be downloaded and referenced in your code
  • The libraries could be...
3 / 18

Third Party Libraries

  • Have to be downloaded and referenced in your code
  • The libraries could be...
  • Common logic used by all your team’s projects
3 / 18

Third Party Libraries

  • Have to be downloaded and referenced in your code
  • The libraries could be...
  • Common logic used by all your team’s projects
  • Third party libraries for
    • Charts
    • Database framework
    • MVC framework
    • Test runners
    • etc
3 / 18

Transivite Dependencies

4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
  • You want to use library A
4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
  • You want to use library A
  • Turns out Library A requires library B and C
4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
  • You want to use library A
  • Turns out Library A requires library B and C
  • You have to include libraries A, B and C in your project
4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
  • You want to use library A
  • Turns out Library A requires library B and C
  • You have to include libraries A, B and C in your project
  • This can be hard to manage when you use a lot of libraries
4 / 18

Transivite Dependencies

  • Some libraries require other libraries to work
  • You want to use library A
  • Turns out Library A requires library B and C
  • You have to include libraries A, B and C in your project
  • This can be hard to manage when you use a lot of libraries
    • Also keeping your libraries up to date is a pain as well
    • Not only up to date, but everyone using the same verisons
4 / 18

Build Artifacts

5 / 18

Build Artifacts

  • File or files that result form your project being built
5 / 18

Build Artifacts

  • File or files that result form your project being built
  • .class files compiled by javac command
5 / 18

Build Artifacts

  • File or files that result form your project being built
  • .class files compiled by javac command
  • .jar files created by jar commnad
5 / 18

Build Artifacts

  • File or files that result form your project being built
  • .class files compiled by javac command
  • .jar files created by jar commnad
  • test results
5 / 18

What are our current build tools?

6 / 18

What are our current build tools?

  • Intellij
  • Javac
6 / 18

Hello Gradle

  • Gradle is a Build Automation System (straight from wiki page)
7 / 18

Hello Gradle

  • Gradle is a Build Automation System (straight from wiki page)
  • Can be configured to...
    • Build your project
    • Run your tests
    • Deploy your code
    • Analyze your code
    • Creates your project artifacts
    • Download and Manage Dependencies
7 / 18

Gradle - Dependency Management

8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
  • Correct version of the library
8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
  • Correct version of the library
  • Transitive libraries
8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
  • Correct version of the library
  • Transitive libraries
  • Dependency conflict resolution
8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
  • Correct version of the library
  • Transitive libraries
  • Dependency conflict resolution
  • Repository where libraries are stored (remote and locally)
8 / 18

Gradle - Dependency Management

  • Manages Dependencies (libraries)
  • Correct version of the library
  • Transitive libraries
  • Dependency conflict resolution
  • Repository where libraries are stored (remote and locally)
    • All the jar files have to be stored somewhere
    • A repository catalogs the libraries by name and version
8 / 18

How to Configure Gradle

9 / 18

How to Configure Gradle

  • build.gradle <- the key to it all
9 / 18

How to Configure Gradle

  • build.gradle <- the key to it all
    • contains the dependencies you want
9 / 18

How to Configure Gradle

  • build.gradle <- the key to it all
    • contains the dependencies you want
    • lists the tasks configurations you need
9 / 18

How to Configure Gradle

  • build.gradle <- the key to it all
    • contains the dependencies you want
    • lists the tasks configurations you need
    • lists the plugins you want to use
9 / 18

How to Configure Gradle

  • build.gradle <- the key to it all
    • contains the dependencies you want
    • lists the tasks configurations you need
    • lists the plugins you want to use
  • Gradle plugins add tasks to gradle
9 / 18

How to use Gralde with Intellij

10 / 18

How to use Gralde with Intellij

  • You can create a project with Gradle ready to use
10 / 18

How to use Gralde with Intellij

  • You can create a project with Gradle ready to use
  • Shows gradle tasks in a special window
10 / 18

How to use Gralde with Intellij

  • You can create a project with Gradle ready to use
  • Shows gradle tasks in a special window
  • Shows dependencies listed in the gradle file
10 / 18

How to use Gralde with Intellij

  • You can create a project with Gradle ready to use
  • Shows gradle tasks in a special window
  • Shows dependencies listed in the gradle file
  • You can search for and add dependencies via Generate command
10 / 18

How to use Gralde with Intellij

  • You can create a project with Gradle ready to use
  • Shows gradle tasks in a special window
  • Shows dependencies listed in the gradle file
  • You can search for and add dependencies via Generate command
  • Going forward we will use gradle for our Java projects
10 / 18

TDD

11 / 18

TDD

  • Test Driven Development
11 / 18

TDD

  • Test Driven Development
  • Write tests before implementing the story in working code
11 / 18

TDD

  • Test Driven Development
  • Write tests before implementing the story in working code
11 / 18

TDD Steps

12 / 18

TDD Steps

  • Write no production code without a failing test.
12 / 18

TDD Steps

  • Write no production code without a failing test.
  • Watch a new test fail before you try to make it pass.
12 / 18

TDD Steps

  • Write no production code without a failing test.
  • Watch a new test fail before you try to make it pass.
  • Write easy code to make new tests pass.
12 / 18

TDD Steps

  • Write no production code without a failing test.
  • Watch a new test fail before you try to make it pass.
  • Write easy code to make new tests pass.
  • Whenever all the tests pass, improve the design by removing duplication.
12 / 18

TDD Steps

  • Write no production code without a failing test.
  • Watch a new test fail before you try to make it pass.
  • Write easy code to make new tests pass.
  • Whenever all the tests pass, improve the design by removing duplication.
  • 1) Red -> 2) Green -> 3) Refactor -> 4) Tests still pass
12 / 18

Red Green Refactor

13 / 18

Red Green Refactor

  • 1) Red -> 2) Green -> 3) Refactor -> 4) Tests still pass
13 / 18

Red Green Refactor

  • 1) Red -> 2) Green -> 3) Refactor -> 4) Tests still pass
  1. Write failing tests (tests are red)
  2. Implement code to make tests pass (tests go green)
  3. Take more time to make the code better (refactor the code)
  4. Tests should still pass
13 / 18

Why the need to refactor?

14 / 18

Why the need to refactor?

  • You should solve the unit of work with as little and as simple code as possible
14 / 18

Why the need to refactor?

  • You should solve the unit of work with as little and as simple code as possible
  • Once that passes, then refactor to make it faster, scalable, reliable, etc
14 / 18

Why all this hassle?

15 / 18

Why all this hassle?

You will have to think through your code before writing it

15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
  • What parameters will be needed for your method(s)
15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
  • What parameters will be needed for your method(s)
  • What will the method(s) return?
15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
  • What parameters will be needed for your method(s)
  • What will the method(s) return?
  • What dependencies will be needed in your class(es)
15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
  • What parameters will be needed for your method(s)
  • What will the method(s) return?
  • What dependencies will be needed in your class(es)
  • Could exceptions be thrown?
15 / 18

Why all this hassle?

You will have to think through your code before writing it

  • What methods and classes will I need?
  • What parameters will be needed for your method(s)
  • What will the method(s) return?
  • What dependencies will be needed in your class(es)
  • Could exceptions be thrown?
  • Should exceptions be thrown?
15 / 18

Test Lists

16 / 18

Test Lists

  • Informal list of use cases and ways that the unit of code could be used
16 / 18

Test Lists

  • Informal list of use cases and ways that the unit of code could be used
  • The test list is not saved, it's turned into actual working tests
16 / 18

Test Lists

  • Informal list of use cases and ways that the unit of code could be used
  • The test list is not saved, it's turned into actual working tests
  • The list is a way for you to get the ideas out of your head, so you can focus on one case at a time
16 / 18

TDD Benefits

17 / 18

TDD Benefits

  • Clean, clearly defined code due to focus on discrete aspects
17 / 18

TDD Benefits

  • Clean, clearly defined code due to focus on discrete aspects
  • Find design roadblocks earlier
17 / 18

TDD Benefits

  • Clean, clearly defined code due to focus on discrete aspects
  • Find design roadblocks earlier
  • Already have confidence that your code “works”
17 / 18

TDD Benefits

  • Clean, clearly defined code due to focus on discrete aspects
  • Find design roadblocks earlier
  • Already have confidence that your code “works”
  • Tests help define what your code is supposed to do
17 / 18

TDD Benefits

  • Clean, clearly defined code due to focus on discrete aspects
  • Find design roadblocks earlier
  • Already have confidence that your code “works”
  • Tests help define what your code is supposed to do
  • Some believe if done right you will not need to use a debugger
17 / 18

Building Your Application

What does it take to build your Java application?

2 / 18
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow