목록전체 글 (202)
wrkbrs
웹서버와 WAS의 차이 구분 설 명 웹 서버 Web Client(웹 브라우저)에게 제공하는 컨텐츠를 제공하는 서버.정적인 HTML 혹은 jpeg나 gif같은 이미지를 HTTP프로토콜을 통해 웹 브라우저로 제공. WAS Server단에서 어플리케이션을 동작할 수 있도록 지원.일반적으로 컨테이너라는 용어로 사용됨.Servlet, JSP, ASP, PHP 등의 프로그램으로 사용됨. Background 초기 web: 이미지 혹은 단순 HTML현재: 게시판, 방명록 등 Server-Client간 상호대화하는 페이지를 제공. -> 내부 어플리케이션을 동작시킬 수 있는 컨테이너를 내장. 동적인 요구에 대응하기 위해 이에 적합한 형태로 변화. 각 사이트가 많은 사용자에게 원활한 서비스를 제공하기 위해 기능적인 laye..
driverClassName : oracle.jdbc.driver.OracleDriver 대신에 oracle.jdbc.OracleDriver를 사용오라클 9 이후에 oracle.jdbc.driver.OracleDriver는 중단되었음. 참고 : https://stackoverflow.com/questions/52014595/springboot-error-registered-driver-with-driverclassname-oracle-jdbc-driver-orac
나름 유용한 handlebars.js 사용예제 입니다. {{#each .}} 등수 : {{rno}} 음식명 : {{foodname}} 추천수 : {{recomcnt}} {{/each}} var source = $("#template").html(); var template = Handlebars.compile(source); var data = [ {rno:1, foodname:'양념치킨', recomcnt:121}, {rno:2, foodname:'후라이드치킨', recomcnt:101}, {rno:3, foodname:'피자', recomcnt:99}, {rno:4, foodname:'떡복이', recomcnt:78}, {rno:5, foodname:'순대', recomcnt:61}, {rno:6, ..
WARNING: it will delete untracked files, so it's not a great answer to the question being posed.I hit this message as well. In my case, I didn't want to keep the files, so this worked for me:git 2.11 and newergit clean -d -fx . older gitgit clean -d -fx "" http://www.kernel.org/pub/software/scm/git/docs/git-clean.html-x means ignored files are also removed as well as files unknown to git.-d mean..
777277I have made a git commit and subsequent push. I would like to change the commit message. If I understand correctly, this is not advisable because someone might have pulled from the remote repository before I make such changes. What if I know that no one has pulled?Is there a way to do this?git push commitshareimprove this questionedited Jun 17 '15 at 8:14k0pernikus17.9k24111191asked Jan 24..
https://stackoverflow.com/questions/36839838/gitignore-does-not-ignore-idea-directory/36839990https://stackoverflow.com/questions/22585818/how-to-add-files-folders-to-gitignore-in-intellij-idea 원격 저장소에서 삭제시키고 add, commit플러그인으로 .gitignore 를 생성해고 add, commit그다음 push 참고 1.gitignore does not ignore .idea directoryAsk Question94Working on a Symfony2 project using phpStorm IDE, I have added couple of ..
git rm -r . 복구하기발생일: 2011.12.01 문제: git 으로 관리하고 있는 소스 폴더가 있는데, 사용하지 않는 파일을 git bash가 아닌 윈도우 폴더에서 삭제했다. 파일 삭제 후 커밋하고 github으로 푸시했는데, 이상하게 폴더에서 삭제한 파일은 github에 반영이 되어 있지 않더라. 이상하다고 생각하고, 매뉴얼을 찾아보다가 git rm 이란 명령어가 있는 걸 발견했다. rm 도 add 랑 같은 개념이라고 생각하고 가볍게 git rm -r . 명령어를 날렸는데, 폴더 내 모든 파일이 삭제되더라. 오... 갓. 해결책: git reset --hard HEAD 역시 스택오버플로우. ㅎㅎ http://stackoverflow.com/questions/2125710/how-to-rever..
How do I center an image inside a Bootstrap panel nested inside another panel? 7I have a page with a main bootstrap panel and inside this panel I have another panel. The objective is to have multiple nested panels inside the main one creating something that looks similar to an image gallery.I was able to create the content and at this point it is responsive, adjusting the number of nested panels..
How to center form in bootstrap 3 5319How can I center my login form ? I'm using bootstrap column but it's not working.Here is my code: Log in 1 1 2 2 3 3 html css twitter-bootstrap twitter-bootstrap-3shareimprove this questionedited Nov 11 '15 at 7:50ROMANIA_engineer33.3k19147141asked Dec 31 '13 at 6:42Cieja1,545423584stackoverflow.com/questions/18153234/… – NoobEditor Dec 31 '13 at 6:45add a c..
how to format bootstrap input form - all labels with the same width I made a form with Bootstrap 3 and I would like to set the same width to all the labels.From this:To this: I made a fiddle for this: http://jsfiddle.net/52VtD/4262/ Kennzeichen ... html css forms twitter-bootstrap 4 Answersactiveoldestvotes3This should do the trick: .input-group{ width: 100%; } .input-group-addon{ width: 45%; te..