This post is a continuation of the Spring Standalone Application post. In this post I will go over the application setup and the Gradle build file used for building the project. The assumption here is that Gradle is already installed on the machine and ready to use. For instructions on how to install Gradle please go the Gradle installation page.
Continue to full post ...Application Setup
Following is the directory structure I had for this project. In case of the Annotation based approach, you don't need the resources folder.
+---SpringStandalone
| build.gradle
|
\---src
+---main
| \---java
| +---main
| | SpringStandaloneTest.java
| |
| \---service
| TestService.java
| \---resources
| applicationContext.xml
|
\---test
\---java
Gradle Build File: Gradle Application Plugin
The Gradle Application plugin is very useful for creating Standalone applications that can be run using gradle run
. By default, the Gradle Application plugin applies the java plugin
and Distribution plugin
. You can configure the main
class and any JVM arguments that you may want to pass to the application.
To pass the main
class name, you can use the mainClassName
parameter like below
mainClassName = "main.SpringStandaloneTest"
And to pass any JVM arguments to the application, you can use applicationDefaultJvmArgs
as shown belowapplicationDefaultJvmArgs = ["-Dprop=val"]
And here is the full build.gradle file I used for the spring standalone applicationapply plugin:'application'
mainClassName = "main.SpringStandaloneTest"
applicationName = 'SpringStandalone'
repositories {
jcenter()
}
dependencies {
compile group: 'org.springframework', name: 'spring-core', version: '4.3.9.RELEASE'
compile group: 'org.springframework', name: 'spring-context', version: '4.3.9.RELEASE'
compile group: 'org.springframework', name: 'spring-beans', version: '4.3.9.RELEASE'
compile group: 'org.springframework', name: 'spring-tx', version: '4.3.9.RELEASE'
compile group: 'org.springframework', name: 'spring-orm', version: '4.3.9.RELEASE'
// Use JUnit test framework
compile 'junit:junit:4.12'
}
applicationDefaultJvmArgs = ["-Dprop=val"]
Great blog!! Thanks for sharing
ReplyDeleteAzure DevOps online training
Microsoft Azure DevOps Training
Microsoft Azure DevOps Online Training
Microsoft Azure DevOps training hyderabad
Azure DevOps online training in hyderabad