[Angular 6 + Spring Boot] #17 Putting it all together 2

preview_player
Показать описание
Create Java web applications with Angular 6 and Spring Boot

In this episode we are going to take all the concepts from the previous episodes (components, services, http) and create the note management features of the NoteIt app.

Source code

_______

Check out the latest software programming articles on my blog, where you will find lots of software development tutorials that will sharpen your programming skills

_______

Say hi on social

#angular #springboot #spring #java #webapplication #angular6 #angulartutorial #angularspringboot
Рекомендации по теме
Комментарии
Автор

I find it cool that troubleshooting and debugging are presented in a natural way.

Thanks for the tutorial.

dcretu
Автор

In case anyone doesn't feel like typing it out:


<div class="card bg-warning" style="border:4px solid white;">
<div class="card-body" style="padding: 8px; margin-top: 8px;">
<div>
<!-- title -->
<input type="text"
class="input-label-lg"
maxlength="10" style="width: 80%"/>
<a class="pull-right text-danger">
<i class="fa fa-trash-o"></i>
</a>
</div>
<!-- text -->
<textarea class="input-label"
style="width: 100%" rows="6"></textarea>
<strong class="text-info" style="fontsize: small">
<!--will add date when we learn about pipes-->
</strong>
</div>
</div>

bouuncyball
Автор

Excellent blog to have hands on experience on angular .... Thanks :)

venkateshthavva
Автор

Amazing, today I was looking for good tutorial for any js framework usage with Spring, and you just posted it :) Thanks a lot, I was following your previous tutorials as they are very useful for my BEng's research application :)

TiRRiL
Автор

For me the most hard think is to say different between notes, note, notebook, notebooks haha :D. Have to always think about it for some seconds.

krztuszenie
Автор

Thanks for the videos. Learn a lot from them. :)
I need to call "npm install before "ng serve" to start the app directly after clone from github.

SpinningOnTheFly
Автор

In the newer versions of angular, assigning null to objects(for example "selectedNotebook = null") generates exeption. To avoid this use non-null assertion operator "!". For example: (click)="selectedNotebook = null!"

ivandvurechenskiy
Автор

Add this line to your application.properties file in order to avoid the database being reset after a restart, in case you also have this issue. :)

inconito
Автор

Amazing video once again! I find it weird that when you delete a Notebook, also the notes are being deleted. Does Spring Boot handles the relations between the tables that well? cascade and mappedBy seem to do the trick. Awesome, way better than hard coded java with database functions.

valkon_