Collection of useful articles
Type | Angular | Vue |
---|---|---|
Property Binding | <a [href]="link">Some Link</a> | <a :href="link">Some Link</a> |
Event Binding | <button (click)="someMethod">Some Button</button> | <button @click="someMethod">Some Button</button> |
- https://vladmihalcea.com/the-best-way-to-map-a-onetomany-association-with-jpa-and-hibernate/ - Differences between unidirectional and bidirectional associations
- https://blog.jdriven.com/2019/11/spring-cloud-gateway-with-openid-connect-and-token-relay/ - Spring-Cloud-Gateway secured by keycloak
- https://mobiarch.wordpress.com/2013/01/11/spring-di-and-cdi-comparative-study/ - Comparisation between CDI and Spring
CDI | Spring |
---|---|
Dependent (default) | Prototype |
Request | Request |
Conversation | (No equivalent exists) |
Session | Session |
Application | Singleton (default) |
@Produces | @Bean |
- https://github.com/alex996/presentations/blob/master/auth.md - Stateful vs Stateless Authentication
- https://www.keycloak.org/docs/latest/server_admin/index.html#_identity_broker_overview - Identity Broker / Identity Provider
- https://developer.okta.com/blog/2019/10/21/illustrated-guide-to-oauth-and-oidc - What is Oauth and oidc
- https://www.kevinkuszyk.com/2018/12/10/git-tips-6-using-git-with-multiple-email-addresses/
- https://www.conventionalcommits.org/en/v1.0.0/
- https://medium.com/nerd-for-tech/from-vue-cli-to-vitejs-648d2f5e031d
- https://adamwathan.me/renderless-components-in-vuejs/ - Renderless Components