Branch | Status |
---|---|
master | |
dev |
Please refer to CONTRIBUTING.md for more information.
This is a maven based project, thus you can use any command line tools or IDEs which support maven to build it. Here we will use command line as the example (you could configure your own development environment accordingly).
To build the project, you just need to run one command from the root folder of this project:
mvn clean package
And the binary will be built to "./azure-functions-java-worker/target/azure-functions-java-worker-<version>.jar"
.
If you have updated the core interface (azure-functions-java-core), a mvn clean install
is required for your test functions app to reference the latest core package.
mvn versions:use-latest-versions
For each of the plugin that displayed, update pom.xml
* Update version
mvn release:update-versions
## Debug
The Java worker alone is not enough to establish the functions app, we also need the support from [Azure Functions Host](https://github.com/Azure/azure-functions-host). You may either use a published host CLI or use the in-development host. But both of the methods require you to attach to the java process if you want a step-by-step debugging experience.
### Published Host
You can install the latest Azure functions CLI tool by:
```sh
npm install -g azure-functions-core-tools@core
By default, the binaries are located in "<Home Folder>/.azurefunctions/bin"
. Copy the "<Azure Functions Java Worker Root>/azure-functions-java-worker/target/azure-functions-java-worker-<version>.jar"
to "<Home Folder>/.azurefunctions/bin/workers/java/azure-functions-java-worker.jar"
. And start it normally using:
func start
A developer may also use the latest host code by cloning the git repository Azure Functions Host. Now you need to navigate to the root folder of the host project and build it through:
dotnet restore WebJobs.Script.sln
dotnet build WebJobs.Script.sln
After the build succeeded, set the environment variable "AzureWebJobsScriptRoot"
to the root folder path (the folder which contains the host.json
) of your test functions app; and copy the "<Azure Functions Java Worker Root>/azure-functions-java-worker/target/azure-functions-java-worker-<version>.jar"
to "<Azure Functions Host Root>/src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.0/workers/java/azure-functions-java-worker.jar"
. Now it’s time to start the host:
dotnet ./src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.0/Microsoft.Azure.WebJobs.Script.WebHost.dll
Note: Remember to remove
"AzureWebJobsScriptRoot"
environment variable after you have finished debugging, because it will also influence thefunc
CLI tool.
Simply using the following command to do so (if there are dependency errors, run mvn clean install
beforehand):
mvn javadoc:javadoc
Java worker now shades all its jars, to introduce any new jars it is required by the developers to add a section in the pom file to relocate it.
Our version strategy just follows the maven package version convention: <major>.<minor>.<hotfix>-<prerelease>
, where:
<major>
: Increasing when incompatible breaking changes happened<minor>
: Increasing when new features added<hotfix>
: Increasing when a hotfix is pushed<prerelease>
: A string representing a pre-release versionUse SNAPSHOT
pre-release tag for packages under development. Here is the sample workflow:
1.0-SNAPSHOT
. There is no hotfix for SNAPSHOT1.0.0-ALPHA
for internal testing purpose. Notice the hotfix exists here1.0.0
.1.1-SNAPSHOT
.1.0-SNAPSHOT
, and release to version 1.0.1
.1.1-SNAPSHOT
.Every time you release a non-development version (like 1.0.0-ALPHA
or 1.0.1
), you also need to update the tag in your git repository.
Primitives have two different type definitions, for example: int.class
(which is identical to Integer.TYPE
) is not Integer.class
.
All Java types are represented by Type
interface, which may be one of the following implementations:
Class<?>
: normal class type like String
ParameterizedType
: generic class type like List<Integer>
WildcardType
: generic argument contains question mark like ? extends Number
TypeVariable<?>
: generic argument like T
GenericArrayType
: generic array like T[]
For the generic type behaviors (including compile-time validation and runtime type erasure) in Java, please refer to Generics in the Java Programming Language .