일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- oracle error
- 외부 프로젝트 상속
- 사설 저장소
- nexus maven
- NFS 구축
- nexus repository
- 오라클 에러 정리
- 인텔리제이
- jar 상속받기
- bootjar 상속받기
- 가상머신
- 오라클 에러
- 오라클
- maven 저장소
- 자바 프로그래밍
- nfs
- 유닉스
- vm
- 리눅스 설치
- nexus3
- bootJar
- vi명령어
- iftables
- oracle
- 스프링부트 상속
- HTTP
- Nexus 3 Repository
- 리눅스
- java
- 저장소
- Today
- Total
목록[SPRING-BOOT]/AdminPage_Project (6)
빽기의 코딩공부Story
■Repository(AdminUserRepository) import com.example.study.model.entity.AdminUser; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface AdminUserRepository extends JpaRepository { } ■Repository(CategoryRepository) import com.example.study.model.entity.Category; import org.springframework.data.jpa.repository.Jp..
■ Entity(AdminUser) import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import javax.persistence.*; import java.time.LocalDateTime; import java.util.List; @Data @AllArgsConstructor @NoArgsConstructor @Entity public class Item { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String status; private String name; private String tit..
■ File > Settings > Plugins ■ File > Settings > Plugins > Installed
● Post Method 란 - 주소창에 파라미터가 노출이 안된다. - 브라우저에서 주소에 대한 캐시를 이루지 못한다. - 전송 가능 데이터 길이 제한이 있지만 Get방식보다 길다. - Get방식보다 보안에 안전하다. - 전송 속도가 Get에 비해 느리다.
● Get Method 란 - 주소창에 파라미터가 노출된다. - 브라우저에서 주소에 대한 캐시가 이루어 지며 정보를 얻을 때 사용한다. - 전송 가능 데이터 길이 제한이 있다. - 보안에 취약하다. - 전송 속도가 POST에 비해 빠르다. import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController // 어노테이션 선언 @RequestMapping("/api") //localhost:8080/api 주소 ..