项目作者: victorfg

项目描述 :
juego-de-resolucion-de-sopa-de-letras is a wordpuzzle application. This is a very simple puzzle game, where the player try to find some words in a grid of letters in horizontal and vertical directions.
高级语言: CSS
项目地址: git://github.com/victorfg/juego-de-resolucion-de-sopa-de-letras.git


WordPuzzle

Video presentation

juego-de-resolucion-de-sopa-de-letras is a wordpuzzle application. This is a very simple puzzle game, where the player try to find some words in a grid of letters in horizontal and vertical directions.

Basically there are two screens, a login page and a game page. The first one was made using Directory Apache Studio for the login.

Setup/Installation Requirements

  • git clone this repo
  • Make sure you have Java installed.

JSP and Servlets

Java servlets are compiled Java classes that implement all or part of a web application. They are not standalone Java programs but must be run by a suitable web server. Though this might seem complicated it actually makes creating and deploying web based applications easier.

Example servlet architecture

JSP is a document format combining HTML and Java to create “dynamic” web pages. These pages are delivered by the web server to the client as HTML, but first the Java code is run to replace variables with actual values. For example a JSP web page might look up order details from a database and insert the results in an HTML table.

If you’ve used PHP or ASPnet then you will see some strong similarities, at least in the approach to creating web content.

Servlets are usually packaged as WAR (web archive) files. Like a zip, jar or other archive these files contain a directory structure and multiple files that make up the web application. Typically there will be .class, .jsp, and .html files. There will also be a web.xml file that describes the mapping of URLs to servlets.

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

  • Erik Pastor Rios
  • Manuel Mendizábal González
  • Víctor Fernández Gayan

License

This project is licensed under the MIT License - see the LICENSE.md file for details