Skip to content
Snippets Groups Projects
user avatar
Abner Kaizer authored
eae22484
History

JpaRestJSFHello

Este projeto trata de mostrar um exemplo simples de utlização das tecnologias

BackEnd

Ambiente de programação no servidor em que neste exemplo tudo ocorre em Java

Spring-Boot

Framework

Spring-Data JPA

Explicações

JPA

Flyway

API

RestAPI

Swagger

Postman

FrontEnd

Angular

Primefaces(PrimeNG)

INSTALL NODEJS

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - sudo apt-get install -y nodejs

INSTALL NPM

sudo npm install npm@latest -g

INSTALL ANGULAR CLI

Angular CLI helps us to create projects, generate application and library code, and perform a variety of ongoing development tasks such as testing, bundling, and deployment.

It can be simply installed using npm.

npm install -g @angular/cli

CREATE A NEW ANGULAR PROJECT

Now we need to set up a workspace for Angular projects in our system and create a new app.

ng new awesome-project

CHOOSING THE CODE EDITOR

You can choose your own favorite code editor for editing your project. But in my case, I choose the Visual studio Code(VS code). Using the below link, you can download VS code for Ubuntu and install.

https://code.visualstudio.com atom Suplime

DIRECTING TO YOUR PROJECT FOLDER AND EDITING

Open your new project on VS code using the below command.

cd awesome-project code .

RODAR APLICAÇÃO

ng serve --open

localhost:4200