Programing Language
-
iOS) alamofire.framework failed no such file or directory (2) 에러로 앱 빌드가 안될때Programing Language/iOS(Swift) 2023. 8. 9. 19:26
Install the latest version of cocoapods >= 1.12.1 This version has been released with these fixes. Try the following commands to install the latest version. sudo gem install cocoapods pod install If you want to use cococapods version
-
React) react-toastify 중복 실행 방지하기Programing Language/React.js 2023. 3. 12. 17:05
import { ToastContainer, toast } from 'react-toastify'; const autoCloseDuration = 1000; const toastId = 'current-toast-id'; // { if(!toast.isActive(toastId)){ //isActive로 활성여부 체크 // 중복 실행 방지하기 위해서 고정된 id를 넣는다. toast(msg, { toastId: toastId, position: 'bottom-center', autoClose: autoCloseDuration, hideProgressBar: true, closeButton: false, pauseOnHover: true, progress: undefined, theme: 'dark' })..
-
Mysql) Group by로 중복 제거한것들 count 하기Programing Language/Database 2023. 2. 22. 16:59
중복값 갯수와 값 구하기 위의 테이블 예제로 2번 이상 구입한 사람의 이름과 구입횟수를 검색하는 쿼리입니다. SELECT name, COUNT(name) FROM carts GROUP BY name HAVING COUNT(name) > 1 실행결과는 다음과 같습니다. name COUNT(name) 도현 2 민준 2 준서 3 중복값 구하기로 고생할 누군가에게 도움이 되었으면 좋겠습니다^^ 도움 되셨다면 하단의 광고 클리이잉ㄱ!!
-
mysql) 월별 방문자 통계 SQL문 만들기Programing Language/Database 2023. 2. 18. 00:49
- 테이블 정보 CREATE TABLE `statistics` ( `no` int(11) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NULL DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; - SQL 문 SELECT DATE_FORMAT(date, '%m') AS month , SUM(value) AS total FROM statistics WHERE YEAR(date) = 2023 GROUP BY month 도움되셨다면 하단의 광고 클릭 센스!
-
mysql) 이번주 또는 저번주 방문자 통계 sql 문Programing Language/Database 2023. 2. 18. 00:47
- 월요일에서부터 일요일까지 기준으로 통계 SELECT SQL CREATE TABLE `statistics` ( `no` int(11) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NULL DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; - 이번주(월 ~ 일) SELECT date, DATE_FORMAT(`date`, '%a') AS `week`, value AS total from statistics_table where date_format(date,'%Y-%m-%d') BETWEEN (SEL..
-
Spring Boot) Controller와 Service 사용방법 (기초)Programing Language/Java 2023. 2. 16. 20:54
- 1. Inserface 생성 public interface UserService { UserDTO createUser(UserDTO userDTO); } - 2. service 파일 생성하여 interface 상속받기 @Service public class UserServiceImpl implements UserService { @Autowired private UserRepository userRepository; @Override public UserDTO createUser(UserDTO userDTO) { // Perform necessary operations // ... User user = new User(userDTO); userRepository.save(user); return ne..
-
Spring Boot 3.0.2) Swagger 3.0 연동하기Programing Language/Java 2023. 2. 16. 17:28
- 필요 dependency //pod.xml org.springdoc springdoc-openapi-starter-webmvc-ui 2.0.2 io.springfox springfox-boot-starter 3.0.0 - Config 파일 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builder..
-
CSS ) div에서 2줄 이상 넘어갈때 ... 처리 하는 방법Programing Language/CSS 2023. 1. 30. 18:38
.card { max-width: calc(100% - 38px); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; // 얘네를 추가히준다 -webkit-line-clamp: 2; -webkit-box-orient: vertical; } display: -webkit-box 속성은 해당 영역을 box 형태로 관리된다. -webkit-line-clamp 속성은 영역 내의 컨텐츠의 최대 라인수를 결정한다. -webkit-box-orient: vertical 속성은 영역 박스의 내의 정렬을 수직으로 만든다. 결과화면 두 줄로 잘보인다! 도움 되셨다면 하단의 광고 클릭 세엔스!!