This reverts commit 4d09f82aec
This commit is contained in:
Ceren U_urlu
2019-02-26 07:56:07 +00:00
parent 4d09f82aec
commit 43ace24fa7
6 changed files with 9 additions and 95 deletions

25
.gitignore vendored
View File

@@ -209,29 +209,4 @@ buildNumber.properties
# Ignore all local history of files # Ignore all local history of files
.history .history
### Gradle ###
.gradle
build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/build/
### Server and Client ###
Server/.gradle
Server/.idea
Client/.gradle
Client/.idea
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode # End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode

View File

@@ -1,12 +0,0 @@
### API's and things we've come across
# Maven
Apache Maven is a software project management and comprehension tool. It can manage a project's build, reporting and documentation from a central piece of information. It is used for building and managing Jav-based projects
# Gradle
Gradle is a build automation tool that is designed to be flexible enough to build almost any type of software. it uses domain-specific language (DSL) instead of the XML form used by Apache Maven
# Spring
Spring is a framework for dependency-injection which is a pattern that allows to build very decoupled systems.
# Tomcat
Tomcat is a Java Servlet Container. It implements several Java EE specifications including Java Servlet, JavaServer Pages (JSP), Java EL, and WebSocket, and provides a "pure Java" HTTP web server environment in which Java code can run.
# Jersey
A standard portable JAX-RS API made to simplify development of RESTful Web Services.

40
Server/.gitignore vendored
View File

@@ -1,40 +0,0 @@
# # Maven ignores
# target/
# pom.xml.tag
# pom.xml.releaseBackup
# pom.xml.versionsBackup
# pom.xml.next
# release.properties
# dependency-reduced-pom.xml
# buildNumber.properties
# .mvn/timing.properties
# # Exclude maven wrapper
# !/.mvn/wrapper/maven-wrapper.jar
# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode
# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,intellij,visualstudiocode
### Gradle ###
.gradle
build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/build/
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode

View File

@@ -3,11 +3,9 @@ package hello;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
//application to boot with spring
@SpringBootApplication @SpringBootApplication
public class Application { public class Application {
//run the application
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(Application.class, args); SpringApplication.run(Application.class, args);
} }

View File

@@ -13,7 +13,6 @@ public class GreetingController {
@RequestMapping("/greeting") @RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) { public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
//increment the id every time the page is refreshed (a new user visits the page)
return new Greeting(counter.incrementAndGet(), return new Greeting(counter.incrementAndGet(),
String.format(template, name)); String.format(template, name));
} }

View File

@@ -3,12 +3,12 @@
## Opening ## Opening
> Check if everyone is present: > Check if everyone is present:
- [ ] Nivard Jansen - [ ] Nivard Jansen
- [x] Kristin Peneva - [ ] Kristin Peneva
- [x] Daan Sneep - [ ] Daan Sneep
- [x] Merel SteenBergen - [ ] Merel SteenBergen
- [x] Ceren Uğurlu - [ ] Ceren Uğurlu
- [x] Mika Wauben - [ ] Mika Wauben
- [x] Sem van der Hoeven - [ ] Sem van der Hoeven
## Points of action ## Points of action
@@ -18,9 +18,9 @@
### pre/during meeting ### pre/during meeting
- Make sure the server and client connections work - Make sure the server and client connections work
- Our server uses spring and gradle - Our server uses spring and maven
- make sure everyone knows how spring works/what it is - make sure everyone knows how spring works/what it is
- make sure everyone knows how gradle works/what it is - make sure everyone knows how maven works/what it is
- Discuss what we learned this week - Discuss what we learned this week
- what did we find online? - what did we find online?
- what did we get to know from tutorials we followed? - what did we get to know from tutorials we followed?
@@ -63,8 +63,6 @@
- JSON - JSON
- read into the database part and try to set one up - read into the database part and try to set one up
- Brushing up on JSON and implementing it in the client-server communication - Brushing up on JSON and implementing it in the client-server communication
- Branches
- **be sure to use branches!**
## Any other business ## Any other business
@@ -73,11 +71,7 @@
## Question round ## Question round
- Questions for the TA - Questions for the TA
- questions that were already present - questions that were already present
- wrong email in gitlab - questions that rose during the meeting
- is our current SCRUM board a good start?
- questions that arose during the meeting
- sprint: brightspace: every week, Andy said length is 2 weeks
- 'Add license' issue on gitlab
## Closing ## Closing
> Demo 1 is done, good job guys! > Demo 1 is done, good job guys!