corda/docs/source/hello-world-template.rst
David Wray 9bbc85db61 Miscellaneous doc fixes (#3760)
* ENT-2298: CE Hello World Tutorial Page references Corda V1.0

Removed version number completely from text, I thought this made more sense than hardcoding a version which will almost immediately be out of date.

* ENT-2302: Hello World Tutorial Page mismatch between code sample and explanatory text

Updated text to proper method

* ENT-2305: Java Instructions to Invoke Hello World CordApp fail

Removed Java instructions
2018-08-10 12:28:59 +01:00

2.5 KiB
Raw Blame History

The CorDapp Template

When writing a new CorDapp, youll generally want to base it on the standard templates:

The Cordapp templates provide the required boilerplate for developing a CorDapp, and allow you to quickly deploy your CorDapp onto a local test network of dummy nodes to test its functionality.

CorDapps can be written in both Java and Kotlin, and will be providing the code in both languages in this tutorial.

Note that there's no need to download and install Corda itself. Corda's required libraries will be downloaded automatically from an online Maven repository.

Downloading the template

To download the template, open a terminal window in the directory where you want to download the CorDapp template, and run the following command:

git clone https://github.com/corda/cordapp-template-java.git ; cd cordapp-template-java

*or*

git clone https://github.com/corda/cordapp-template-kotlin.git ; cd cordapp-template-kotlin

Opening the template in IntelliJ

Once the template is download, open it in IntelliJ by following the instructions here: https://docs.corda.net/tutorial-cordapp.html#opening-the-example-cordapp-in-intellij.

Template structure

The template has a number of files, but we can ignore most of them. We will only be modifying the following files:

// 1. The state
cordapp-contracts-states/src/main/java/com/template/TemplateState.java

// 2. The flow
cordapp/src/main/java/com/template/TemplateFlow.java
// 1. The state
cordapp-contracts-states/src/main/kotlin/com/template/StatesAndContracts.kt

// 2. The flow
cordapp/src/main/kotlin/com/template/App.kt

Clean up

To prevent build errors later on, we should delete the following files before we begin:

  • Java: cordapp/src/main/java/com/template/TemplateClient.java
  • Kotlin: cordapp/src/main/kotlin/com/template/Client.kt

Progress so far

We now have a template that we can build upon to define our IOU CorDapp. Let's start by defining the IOUState.