Advertisement
codeuniv

Тестовое задание (OAuth, REST, Spring Boot)

Apr 4th, 2022 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. https://www.thymeleaf.org/doc/articles/springsecurity.html
  2.  
  3. FLYWAY
  4. https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto.data-initialization
  5.  
  6. @DataJpaTest
  7. https://java-ru-blog.blogspot.com/2020/04/spring-boot-data-jpa-tests.html
  8. + @Sql, @SqlConfig and @SqlGroup
  9. @Sql({"/employees_schema.sql", "/import_employees.sql"})
  10. public class SpringBootInitialLoadIntegrationTest
  11. https://www.baeldung.com/spring-boot-data-sql-and-schema-sql (внизу)
  12.  
  13. data.sql vs Hibernate & JDBC-style
  14. https://www.baeldung.com/spring-boot-sql-import-files#spring-jdbc-support
  15.  
  16.  
  17. MVC Converters
  18. https://www.baeldung.com/spring-httpmessageconverter-rest
  19.  
  20. Spring Security setup
  21. https://www.baeldung.com/spring-security-login
  22.  
  23. get username
  24. https://www.baeldung.com/get-user-in-spring-security
  25.  
  26. UserService
  27. https://www.baeldung.com/spring-security-registration-password-encoding-bcrypt
  28. https://www.baeldung.com/spring-security-authentication-with-a-database
  29.  
  30. OAuth
  31. https://habr.com/ru/post/77648/ (ПОНЯТНО!)
  32. https://docs.microsoft.com/en-us/linkedin/shared/authentication/sample-applications (LINKED IN EXAMPLE)
  33. https://docs.microsoft.com/en-us/linkedin/shared/authentication/sample-applications
  34. https://github.com/arocketman/Spring-oauth2-jpa-example
  35. https://github.com/jgrandja/oauth2-protocol-patterns
  36. https://github.com/spring-guides/tut-spring-boot-oauth2
  37. https://github.com/spring-projects/spring-security-oauth
  38. https://github.com/iainporter/oauth2-provider
  39. https://github.com/rajithd/spring-boot-oauth2
  40. https://www.baeldung.com/spring-security-oauth-auth-server
  41. https://aaronparecki.com/oauth-2-simplified/
  42. https://medium.com/google-cloud/understanding-oauth2-and-building-a-basic-authorization-server-of-your-own-a-beginners-guide-cf7451a16f66
  43. https://habr.com/ru/company/otus/blog/570130/
  44. https://www.marcobehler.com/guides/spring-security-oauth2
  45. https://github.com/dynamind/spring-boot-security-oauth2-minimal
  46. https://docs.spring.io/spring-security/site/docs/current/api/org/springframework/security/config/annotation/web/builders/HttpSecurity.html#oauth2Login()
  47.  
  48.  
  49. REST API example (documenting allowed requests)
  50. https://netflix.github.io/genie/docs/3.0.0/rest/
  51.  
  52. проектирование REST API
  53. https://www.infoq.com/articles/webber-rest-workflow/
  54. example
  55. https://thereisnorightway.blogspot.com/2012/05/api-example-using-rest.html
  56.  
  57.  
  58. UI
  59. HEader(Bootstrap)
  60. https://bootsnipp.com/snippets/E10d8 (COLORFUL GRADIENT) + https://csshint.com/bootstrap-headers/
  61. https://bootstrapious.com/p/bootstrap-static-header
  62. LOGIN FORM
  63. https://colorlib.com/wp/template/colorlib-regform-32/
  64.  
  65. BUTTONS
  66. https://getbootstrap.com/docs/5.0/components/buttons/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement