MyBatis] 동적 쿼리 생성시 삽질 주의 MyBatis로 동적 쿼리 생성시 주의 해야 할 점. MyBatis 문법은 RDBMS 별로 쿼리가 조금 씩 달라지며, 자신이 사용하는 디비에 맞지 않게 사용하면 하루종일 삽질하고 자신의 있는 모습을 볼 수 있을거다. 다 같은 구문을 사용할 줄 알았는데. 이거 때문에 몇시간을 날려 먹었는지.. LIKE 문 # SQL 에서 LIKE 문 은 아래와 같이 사용된다. SELECT * FROM TABLE_NAMEWHERE COLUMN_NAME LIKE PATTERN SELECT * FROM SAMPLEWHERE TAG LIKE 'Sa%' OR WHERE TAG LIKE '%am' OR WHERE TAG LIKE '%am%' # Mybatis에서는 DBMS 종류 별로 차이..
출처 : https://www.cmsfactory.net/node/10674 Bootstrap는 널리 사용되는 front-end framework입니다. 반응형 웹디자인을 기본으로 하고 있고, 폼 디자인, 메뉴바, 드롭다운 등 자주 사용되지만 손이 많이 가는 요소들의 디자인과 기능을 포함하고 있어 쉽게 사이트를 제작할 수 있습니다.하지만, Bootstrap 기본 모양을 사용하면 모든 사이트가 같은 디자인이 된다는 단점이 있습니다. 그래서 어느 정도 수정을 해야 차별화된 모습을 갖출 수 있습니다.그런 수정 작업이 번거롭다면, 또는 그런 작업을 할 수 있는 인력이 없다면 Bootstrap 무료 템플릿을 이용하여 디자인을 바꾸는 방법이 있습니다.Bootstrap 기반이 아니라고 생각할 정도로 확연히 다른 모습..
https://blog.udacity.com/2016/03/12-best-charting-libraries-for-web-developers.html echart가 그나마 나은듯... We know a great many of you are knee deep in Web Development projects as we write this, and any time we have the opportunity to pass on some expert insights and resources, we don’t hesitate to do so. Today, we have an awesome post from Rohit Boggarapu, who is a software engineer at Adobe. He’s ..
1. squirrel sql client download https://sourceforge.net/projects/squirrel-sql/?source=directory 현재 최신 버전squirrel-sql-3.8.1-standard.jar다운받은 후 아래 명령어를 실행 시킨다. java -jar squirrel-sql-3.8.1-standard.jar그럼 인스톨 화면이 나온다 넥스트 버튼을 누르면서 설치한다. 2. altibase setting-1 http://support.altibase.com/kr/product해당 사이트로 가서 최신 알티베이스 jdbc 드라이버를 다운받는다.altijdbc6.5.1.4.2.jar squirrel sql client 가 설치된프로그램 폴더로 간다. C:\Progr..
How to add Oracle JDBC driver in your Maven local repository Here’s a guide to show you how to add an Oracle JDBC driver into your Maven local repository, and also how to reference it in pom.xml. Note Due to Oracle license restrictions, the Oracle JDBC driver is not available in the public Maven repository. To use the Oracle JDBC driver with Maven, you have to download and install it manually in..
[javascript] 자바스크립트로 내 IP확인하기_(공인ip) 1. 코드 공개 아래에, 전체 코드를 작성하였습니다. 구글과 네이버검색을 많이 이용하는데 블로그에서 이렇게 적어주는게 편한 기억이 많았습니다^^ 2. 예제파일명 : index.html $.getJSON('http://jsonip.appspot.com/?callback=?', function(data){ alert(data.ip); });Probably easier to understand - an alternative, without jQuery, would be: Note that when you include http://jsonip.appspot.com/?callback=getip as a script in your HTML you ..
http://bxslider.com/examples/carousel-demystified JS:$(document).ready(function(){ $('.slider8').bxSlider({ mode: 'vertical', slideWidth: 300, minSlides: 2, slideMargin: 10 }); }); HTML: Vertical carousels follow most of the same rules as horizontal carousels. However, the maxSlides setting is not used as vertical carousels will always have only one slide across. Therefore, we do not have to acc..
1. 데이터베이스 백업하기 1-1) procedure, function, trigger 포함한 백업하기(옵션 --routines --trigger) $ mysqldump --routines --trigger -u유저이름 -p패스워드 DB명 > 백업파일 명령어 예제). $ mysqldump --routines --trigger -uroot -pxxx -A > /xxx.sql $ mysqldump --routines --trigger -uroot -pxxx [DATABASE] > [DATABASE].sql 2-2) procedure function trigger만을 백업하기 $ mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt..