Repository designed to develop Spring Application for learning purposes
This is an implementation of minimum news-feed system (like Twitter). Builded with Java and Spring Boot with a HTML5 template engine.
The application provides a registration/login module and a simple system for follow users, create posts and display recent news (latests post created by followed users)
To clone and run this application, you'll need Git and Java installed on your computer.
# Clone this repository
$ git clone https://github.com/antoniorico31416/spring-boot-app.git
Once you cloned the repo, you need to import to some IDE or Text Editor of your preference.
You have to set up some parameters in order to manage the jpa persistence module:
-
Database information in
src\main\resources\application.properties
:server.port={app port} spring.datasource.url=jdbc:{dbms}://{db-host}:{port}/{db-name} spring.datasource.username={user} spring.datasource.password={password} spring.jpa.show-sql = true //optional parameter to show executed queries