일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- 스프링부트
- MySQL
- 인공지능
- 오라클
- sql
- javascript
- springboot
- AI
- 티스토리챌린지
- 스프링부트 웹 소켓
- 아이패드다이어리
- CD
- 오블완
- Spring
- CI
- JPA
- 다이어리
- swift
- jenkins
- libasm
- Xcode
- DBMS
- 프로그래밍언어론
- 리눅스
- 42seoul
- 스프링
- 소켓
- 네트워크
- IOS
- 데이터베이스
- Today
- Total
목록springboot (5)
Hi yoahn 개발블로그
JpaRepository에서 @Query(value = "select * from table", nativeQuery = true) 를 통해 데이터베이스 쿼리를 직접 작성할 수 있다. value 에는 데이터베이스 쿼리가 들어가고, nativeQuery = true 옵션으로 실제 sql 쿼리와 동일하게 작성할 수 있다. @Query(value = "select c.id, c.name, c.addr roadaddr, c.liked_count, r.rate from " + "(select c1.id, c1.addr, c1.name, count(*) liked_count from cafe c1 " + "inner join liked_cafe lc where c1.id = lc.cafe_id group by lc..
https://stackoverflow.com/questions/27477982/exception-when-publishing-exception-message-exec-timed-out-or-was-interrupted Exception when publishing, exception message [Exec timed out or was interrupted after .. ms] I need to create a Jenkins job that runs a PowerShell script on another server over SSH. I am using 'Send files or execute commands over SSH' option to do the needful. The 'Exec comm..
https://oddpoet.net/blog/2017/04/27/cors-with-spring-security/ CORS 설정과 Spring Security API 서버와 Web FrontEnd 서버를 나누어서 구성할 때 CORS(Cross Origin Resource Sharing) 설정을 해야하는데,spring-security를 적용 중이라면 servlet filter로 CORS를 적용하면 원치 않은 결과를 얻을 수 있다.spring-sec oddpoet.net API 서버와 Frontend의 도메인 주소가 다른 상태로 작업할 경우 연동 시 CORS 에러가 나게 되는데, 이를 해결하기 위해서는 서버에서 별도의 설정을 해주거나 react의 경우 프록시 서버 설정을 해주는 것으로 해결된다는 글을 봤었다...
https://spring.io/guides/gs/messaging-stomp-websocket/ Using WebSocket to build an interactive web application this guide is designed to get you productive as quickly as possible and using the latest Spring project releases and techniques as recommended by the Spring team spring.io build.gradle plugins { id 'org.springframework.boot' version '2.5.1' id 'io.spring.dependency-management' version '..
3.1 JPA 자바 표준 ORM(Object Relational Mapping) 기술 JPA는 인터페이스로서 자바 표준명세서이다. 인터페이스인 JPA를 사용하기 위해서는 구현체가 필요(Hibernate, Eclipse Link 등) 하지만 Spring 에서 JPA를 사용할 때는 구현체들을 직접 다루지는 않음 Spring Data JPA 구현체들을 좀 더 쉽게 사용하기 위해 추상화시킨 Spring Data JPA라는 모듈을 이용하여 JPA 기술을 다룬다 JPA 객체지향 프로그래밍을 쉽게 가능 3. 성능 이슈 해결책 존재 -> 네이티브 만큼의 퍼포먼스 가능 3.2 프로젝트에 Spring Data JPA 적용하기 p.86 dependencies { compile('org.springframework.boot:..