I found that for me the easyest way to follow the guide is using a full ELK stack docker compose suite. Here you can find one https://github.com/deviantony/docker-elk
- Getting started
- Tutorial search
- More-Complicated Searches(p. 19)
# Visual Studio Code | |
*.code-workspace | |
.project | |
.classpath | |
.settings/ | |
.vscode/ | |
# MacOS | |
.DS_Store |
I found that for me the easyest way to follow the guide is using a full ELK stack docker compose suite. Here you can find one https://github.com/deviantony/docker-elk
import ch.lugano.egov.data.AccountRepository; | |
import ch.lugano.egov.data.StaticUserStore; | |
import ch.lugano.egov.models.Account; | |
import ch.lugano.egov.models.CustomUser; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.security.core.authority.AuthorityUtils; | |
import org.springframework.security.core.userdetails.UserDetails; | |
import org.springframework.security.core.userdetails.UserDetailsService; | |
import org.springframework.security.core.userdetails.UsernameNotFoundException; |
Pretty simple situation.
My model is 1 Product has many Bookings
the api that I have to expose is just for bookings, the product part is just description and some price that has not to be edited.
so my desired endpoints are:
GET - List of all bookings POST - Create new booking
//Function that has to receive parameters | |
//Can be whatever function the injection is like in normal AngularJS CDI so you can inject service or locals | |
function wrapped(thirdLoc,firstLoc){ | |
console.log('Enter Wrapped'); | |
$timeout(function(){ | |
console.log('Empty inside message'); | |
console.info('Its injected??? ->',thirdLoc); | |
console.info('Its injected??? ->',firstLoc); | |
}, 2000); |