You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
GAM 384ec0c331 GameImages with marked last move 4 years ago
db PlayerNavigation 4 years ago
frontend Layout 4 years ago
src/main GameImages with marked last move 4 years ago
.gitignore images of games :) no more useless "com.example....." 4 years ago
LICENSE.md PlayerNavigation 4 years ago
README.md NICE new structure with generic Navigation 4 years ago
notes.txt nice style, notes 4 years ago
package-lock.json Matchday Results 4 years ago
package.json Matchday Results 4 years ago
pom.xml GameImages with marked last move 4 years ago

README.md

Schachliga DeLuxe

This is an example project that can be used as a starting point to create your own Vaadin application with Spring Boot. It contains all the necessary configuration and some placeholder files to get you started.

The project is a standard Maven project, so you can import it to your IDE of choice. Read more how to set up a development environment for Vaadin projects (Windows, Linux, macOS).

This project was created from https://start.vaadin.com.

Running and debugging the application

Running the application from the command line.

To run from the command line, use mvn and open http://localhost:8080 in your browser.

Running and debugging the application in Intellij IDEA

  • Locate the app.Application.java class in the Project view. It is in the src folder, under the main package's root.
  • Right-click on the app.Application class
  • Select "Debug 'app.Application.main()'" from the list

After the application has started, you can view it at http://localhost:8080/ in your browser. You can now also attach breakpoints in code for debugging purposes, by clicking next to a line number in any source file.

Running and debugging the application in Eclipse

  • Locate the app.Application.java class in the Package Explorer. It is in src/main/java, under the main package.
  • Right-click on the file and select Debug As --> Java app.Application.

Do not worry if the debugger breaks at a SilentExitException. This is a Spring Boot feature and happens on every startup.

After the application has started, you can view it at http://localhost:8080/ in your browser. You can now also attach breakpoints in code for debugging purposes, by clicking next to a line number in any source file.

Project structure

  • MainView.java in src/main/java contains the app.matchNavigation setup. It uses App Layout.
  • app.views package in src/main/java contains the server-side Java app.views of your application.
  • app.views folder in frontend/ contains the client-side JavaScript app.views of your application.

What next?

vaadin.com has lots of material to help you get you started: