Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Server side with distributed cache/Java/Using Redis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
38 changes: 38 additions & 0 deletions Server side with distributed cache/Java/Using Redis/ReadMe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# How to host the DocumentEditor service.

Opening and saving documents using Redis.

## Maven Project

Please find the list of commands used for running and deploying the spring boot application in Azure.

Clean the package using

> mvn clean package

Run the application locally using

> mvn spring-boot:run

Build the package using

> mvn package

Above package generation command creates the "tomcat-0.0.1-SNAPSHOT.war" in the below location.

> target\tomcat-0.0.1-SNAPSHOT.war

Please create a Azure app service with Java & Tomcat.

After creating the app service

>Development Tools -> Advanced Tools -> Go -> Debug console -> CMD

Once the file manager is opened please navigate to

>site -> wwwroot -> webapps

Upload the generated war file "tomcat-0.0.1-SNAPSHOT.war" the application will be hosted under

>{site-name}/tomcat-0.0.1-SNAPSHOT

310 changes: 310 additions & 0 deletions Server side with distributed cache/Java/Using Redis/mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading