전체 글(295)
-
공부 목록
개발자를 위한 순서 순수 자바 (SOLID) 데이터베이스 (오라클, MySQL) ERD (데이터베이스 설계도) HTML, CSS, JAVASCRIT JSP, 자바 (Servlet) UML (StarUML) Spring, JSP Spring Boot, JSP JPA Spring Data JPA QueryDSL API 프론트엔드 개발자를 위한 내용 Axios 사용법 및 인터셉터 React Vue 개발시 부가적으로 필요한 지식 Git, GitHub SOLID 개발원칙 로그처리 AOP API 예외처리, WEB 예외처리 요청 매핑 @Controller @RestController @RequestMapping(“/hello”) @GetMapping(“/mapping/{userId}”) @PathVariable St..
2025.09.28 -
[spring security] - 초기 설정
위 암호화된 패스워드 뜨고.. 로그인창이 떠야 만드는 순서만드는 순서1. WebConfig -> 2. SecurityConfig1. WebConfig@Configuration@EnableWebMvc2. SecurityConfig@RequiredArgsConstructor // 매개변수 생성자@Configuration@EnableWebSecurity3. UserAuthenticationEntryPoint@Coponent4. JwtAuthFilter다시 SecurityConfig 가면, 에러 해결됨5. UserAuthProvider가서 3개가 하나다.
2025.09.27 -
[Spring-boot | 백앤드 개발 셋팅(설정)] - 기본 의존성 셋팅 및 설명
STS4 2번을 쓸건지, 4번을 쓸건지!! 고르면됨... 1. @LOMBOK = @ENTITY, @DATA, @GETTER, @Slf4j, @Builder 등 쓰기 위함 - JPA 엔티티엔 @Data 남용 금지(양방향 연관관계 ToString/Equals 무한루프·성능 이슈); 필요 시 @Getter + @NoArgsConstructor(access = PROTECTED) + @Builder 조합 권장. Model에서 뒤단에 데이터베이스랑 클래스랑 1:1 연결시 @Data 비권장 2. Spring Data JPA = 는 Repository를 만들어 extends= JPARepository 상속을 받아서 사용함 => org.springframework.boot spring-boot-star..
2025.09.26 -
[프로젝트] - 패턴분석(사용자 정보, 소비정보, 여러가지 서비스 정보) 2025.09.25
-
프로젝트 - [NLP -> Tensorflow 학습시키기(CPU)] => GPU 학습으로 변경(환경 셋팅)
i7-1350 / 16메모리 / GPU 사용하지 않음C:\Users\lch30\PyCharmMiscProject\.venv\Scripts\python.exe C:\Users\lch30\PyCharmMiscProject\chatbot_train_api.py 2025-09-25 00:39:58.973505: I tensorflow/core/util/port.cc:153] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environme..
2025.09.25 -
fit, predict, evaluate, compile 알기
fit : predict : evaluate : complie : sequential : add : save :
2025.09.23