SPRING BOOT | How to delete data from MySQL database with REST API in Java Spring Boot

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ม.ค. 2025

ความคิดเห็น • 7

  • @ECNISHOKAP
    @ECNISHOKAP 4 หลายเดือนก่อน +1

    Thanks bro for this whole springboot videos..👌💖

  • @darkmessiah8087
    @darkmessiah8087 3 หลายเดือนก่อน

    it enabled me to solve my problem, thank you very much !

  • @conorplunkett
    @conorplunkett 2 หลายเดือนก่อน

    thanks for the series very helpful

  • @nikhil4yourhelp670
    @nikhil4yourhelp670 8 หลายเดือนก่อน

    When we deleted the record and then add another record the I'd is not the next number of present record it is next of deleted record .

  • @amitchaurasia592
    @amitchaurasia592 11 หลายเดือนก่อน

    What happen in case you want delete the data which is not present, can you please tell how you can handel those case

    • @SharmaCoder
      @SharmaCoder  11 หลายเดือนก่อน +1

      You can check if the requested record exists in db, and then add an if condition if the record exists else return 404

  • @songjun7122
    @songjun7122 ปีที่แล้ว

    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
    http.csrf().disable()
    .authorizeHttpRequests((authorize) ->
    authorize.requestMatchers("/register/**").permitAll()
    .requestMatchers("/").permitAll()
    .requestMatchers("/users").hasRole("ADMIN")
    .requestMatchers(HttpMethod.DELETE,"/users/delete/**").hasRole("ADMIN")
    It gives me Error 403 when I include Spring Security although i login as admin, can you help me?