- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MariaDB
- MFC
- sql exception
- 시간대별 통계
- 터치좌표 view
- Back 키 클릭 감지
- 가변영역 스크롤
- kill -9
- reactnative
- CentOS
- view 획득
- 파티션 빠른 삭제
- 스크롤적용
- group by
- Activity 전체화면
- springboot
- 시간대 테이블생성
- mybatis exception
- vc++
- pid 찾아 kill
- 피쉬랜드
- 코드로 서버 재실행
- rn
- SQL
- CSS
- 말줌임 CSS
- MySQL
- c언어
- ffmpeg
- springboot 재가동
개발은 하는건가..
Repository 에 다음과 같이 DataAccessException 을 throws 해준다. @Repository @Mapper public interface UserRepository { int insertUser(UserInfoDTO uid) throws DataAccessException; } 아래와 같이 서비스에서 Repository 함수를 호출하면서 Exception 을 catch 하여 처리해준다. @Service @RequiredArgsConstructor public class UserService { private final UserRepository _UserRepo; public int addUser(UserInfoDTO user) { int res = 0; try { user.se..
텍스트 정렬 : text-center, text-left, text-right, text-nowrap, text-justify(좌우긑정렬) 텍스트 제목 크기 : h1 ~ h6 (숫자가 높을수록 작아짐) 텍스트 두께 : font-weight-bold, font-weight-light 텍스트 이텔릭 : font-italic 텍스트 대소문자 : text-uppercase, text-lowercase, text-capitalize(첫글자 대문자) 테이블 행 마우스 hover : table-hover 테이블 좁은폭 스타일 : table-condensed
Springboot 서버 동작 환경을 DB 에 설정된 값을 반영하여 다시 실행해야 하는 경우가 필요할 때가 있는데 간단하게 구현하는 방법을 찾았다. 원문 사이트 : https://www.baeldung.com/java-restart-spring-boot-app Programmatically Restarting a Spring Boot Application | Baeldung Learn a few ways to restart a Spring Boot application with Java www.baeldung.com 1. Springboot Application 클래스에 아래와 같이 restart() 함수를 작성한다. @SpringBootApplication @MapperScan(basePackages ..