전체 글
-
[java] MD5카테고리 없음 2022. 6. 14. 11:08
MD5 param = 암호화하려는 문자열 public static String getMD5(String str){ String rtnMD5 = ""; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(str.getBytes()); byte byteData[] = md.digest(); StringBuffer sb = new StringBuffer(); for(byte byteTmp : byteData) { sb.append(Integer.toString((byteTmp&0xff) + 0x100, 16).substring(1)); } rtnMD5 = sb.toString(); } catch (Exception e) { e.printS..
-
1/2-GCP 서버 구성하는법, Google Cloud PlatformWEB/BACK 2022. 6. 11. 17:54
1. GCP 홈페이지에 가입해서 무료로 90간 사용한다. https://cloud.google.com/ 클라우드 컴퓨팅 서비스 | Google Cloud 데이터 관리, 하이브리드 및 멀티 클라우드, AI와 머신러닝 등 Google의 클라우드 컴퓨팅 서비스로 비즈니스 당면 과제를 해결하세요. cloud.google.com 2. VM 인스턴스 생성 사용 클릭후 1분정도 시간이 소요된다. 인스턴스 만들기 클릭 기다리면 인스턴스만들기 화면 나온다. cpu2, 3GB 대충 선택 centOS 7 선택, 하단에 http, https모두 체크 만들기 클릭 3. 네트워크 설정 앞선 설정 다되면 리스트에 만들어진것 확인할 수 있다. 오른쪽 땡땡땡클릭한다. 네트워크 세부정보 클릭 네트워크에서는 두가지를 설정한다. 1. 고정..
-
[3/3] 스프링부트 데이터베이스 연결하기 (hikari,mysql,mybatis)카테고리 없음 2022. 5. 29. 16:51
1. application.properties에 데이터 소스 설정 spring.datasource.hikari.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.hikari.jdbc-url: jdbc:mysql://localhost:3306/board?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC spring.datasource.hikari.username=root spring.datasource.hikari.password=root mybatis.configuration.map-underscore-to-camel-case=true 2. DatabaseConfiguration file 생..
-
MySQL 설치 (window)WEB/BACK 2022. 5. 28. 16:04
1. 사이트 이동 https://dev.mysql.com/downloads/installer/ MySQL :: Download MySQL Installer Select Operating System: Select Operating System… Microsoft Windows Select OS Version: All Windows (x86, 32-bit) Windows (x86, 32-bit), MSI Installer 8.0.29 2.3M (mysql-installer-web-community-8.0.29.0.msi) MD5: 4f735569267527dec28d9e8d977f33d1 | Signatu dev.mysql.com 2. 아래꺼 다운 3. nothanks. 클릭 4. 다운로드한 파일 실행후 ..
-
[spring] 배열값 controller로 값 넘기기 (serialize(), ajax)WEB/BACK 2022. 5. 25. 14:14
jsp에서 controller로 값을 넘기고 싶다. ajax를 이용해서, 근데 data는 serialize()를 이용하고싶다. 그런데 하려니 name값이 동일한 애들이있어서 배열로 가져와야할때 입니다. html name="color"> name="color"> name="color"> name="loc"> name="hobby"> 1. vo에 배열타입으로 생성한다. vo private String[] color; 2.ajax에서 serialize()를 쓴다. $.ajax({ url : "/user", type : "POST", data :$("#UserForm").serialize(), dataType: 'JSON', success : function (data) { alert("success") } }..
-
[mybatis] insert , update후 seq 가져오기 key property 지정WEB/BACK 2022. 5. 25. 14:05
여러 쿼리를 날려야되는데 insert하고나서 그 추가된 seq를 가지고 작업을하고자할때 유용.. 2가지를 mybatis 에다가 추가해줍니다. 1. keyProperty="seq" 2. useGeneratedKeys="true" user.xml (mybatis) INSERT INTO users (,,,,,) VALUES (#{}, ,,,,,) parameter 에 vo를 사용했다거나 해당 seq가 들어가는 map이라면 별다른 조치를 하지 않아도 쿼리가 날라간뒤 vo에 담겨있습니다.