Looks like your "Deployment Assembly" is missing the Maven Dependencies being added to the packaging structure of your project. The way this should look is:

enter image description here

The way to add that in is:
- click on Add
- select Java Build Path Entries
- select Maven Dependencies
- Finish

That should add your Maven Dependencies into WEB-INF/lib. In case your project structure is not standard, you can also edit that path by double-clicking inside your Deploy Path column - in this case, on WEB-INF/lib.

Hope that helps.

참조 : http://stackoverflow.com/questions/20718566/maven-dependencies-not-being-added-to-web-inf-lib

설정

트랙백

댓글

isELIgnored=false - JSP

J/Jsp 2014. 3. 27. 15:23


출처 : http://www.okjsp.net/seq/157163

 

1. 모든 jsp 페이지에 isELIgnored를 붙인다.
<%@ page isELIgnored="false" contentType="text/html; charset=utf-8"%>

2. web.xml의 servlet 버젼을 올린다(2.4이상?).
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee " target="_blank">" target="_blank">http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

3. 이건 될지?.. 테스트 안해봤지만
web.xml에
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>

설정

트랙백

댓글

CSS 기초 공부

C/CSS 2014. 3. 23. 16:50

서식 적용 우선 순위 규칙 ** 

1) 가장 먼저 적용되는 우선 순위

상세하게 정의된 selector의 우선 순위가 높다.

 

태그명#id > 태그명.class > 태그명

tr#tr1 > tr.class > tr:hover > tr

 

부모 태그를 명시해준 것이 좀 더 상세하다

table tr > tr

 

table.table-hover tr > table tr > tr

 

2) 규칙에서 우선 순위가 같다면 다음 적용되는 우선 순위

인라인 > 내부 서식 > 외부 서식

 

3) 규칙에서 우선 순위가 같다면 다음 적용되는 우선 순위

소스 코드에서 앞 줄 보다 뒷 줄의 우선 순위가 높다

 

 

 

first-child, last-childe 와 nth-child, nth-of-type 정의

 

first-child는 (해당 아무거나(태그, 클래스):first-child  로 작성하고,

해당 아무거나 첫 번째로 나오는 태그를 찾는다.

 

last-child는 (해당 아무거나(태그, 클래스):last-child  로 작성하고,

해당 아무거나의 마지막 번째로 나오는 태그를 찾는다.

 

번호는 1부터 시작한다.

nth-child는 (해당 아무거나(태그, 클래스):nth-child (번호, odd, even)  로 작성하고,

해당 아무거나 (번호) 번째, 홀수, 짝수로 나오는 태그를 찾는다.

* 해당 (번호) 번째 태그가 다른 태그일 경우, CSS는 적용이 되지 않는다.

 

nth-of-type는 (해당 아무거나(태그, 클래스):nth-of-type(번호, odd, even)  로 작성하고,

해당 위치 (번호) 번째, 홀수, 짝수로 번째로 나오는 태그를 찾는다.

 

 

 

'C > CSS' 카테고리의 다른 글

CSS 삼각형 만들기  (0) 2014.12.25
facebook comments 리사이즈  (0) 2014.08.04
스크롤 관련 CSS  (0) 2014.03.19
CSS zoom 오브젝트를 확대 시켜 주는 속성  (0) 2014.03.19
CSS로 심플라인 테이블  (0) 2014.03.18

설정

트랙백

댓글

 

설정

트랙백

댓글

 

Favoites(즐겨찾기) 폴더 백업에 늘 애먹고 있던 중,
차라리 초기의 즐겨찾기 폴더의 위치를 아예 내 백업용 HDD 쪽으로 하면
백업이고 나발이고 없겠다는 생각에 위치 변경을 시도하기로 했다.
찾아본 결과 아래와 같았다.

HKCU\Software\Microsoft\Windows\CurrentVersion\Explore\User Shell Folders
HKCU\Software\Microsoft\Windows\CurrentVersion\Explore\Shell Folders

위의 두 군데에 있는 Favorites 라는 항목의 경로를 자신이 원하는 Favorites 폴더로 변경하고
Reboot 해주면 Favorite 폴더 위치를 변경할 수 있다.

 

출처 : http://hind.pe.kr/639

'W > Windows' 카테고리의 다른 글

마우스보다 빠르게! 윈도우 단축키 쓰기  (0) 2014.04.13
VHD 부팅메뉴 추가  (0) 2014.03.16
윈도우 7 VHD 만들어서 설치  (0) 2014.03.16
MS 윈도우 7 신모드 진입  (0) 2014.03.16
에어로피크 미리보기 빠르게  (0) 2011.12.25

설정

트랙백

댓글

parent.function()

 

설정

트랙백

댓글

1. $.getJSON("url.jsp?callback=?", function(d){ // d.key; });

2. $.ajax({ url : "url.jsp",

dataType : "jsonp",

jsonp : "callback",

success : function(d){

// d.key;

}

});

 

JSON

기존 JSON

{ "user" : [{"first" : "Homer", "last" : "simpson"}, {"first" : "Hank", "last" : "Hill"}, {"first" : "Peter", "last" : "Griffin"}]}

 

Diet JSON

{"users" : {"cols" : ["first", "last"], "rows" : [["Homer", "Simpson"], ["Hank", "Hill"], ["Peter", "Griffin"]]}}

'J > Jquery' 카테고리의 다른 글

[jQuery] $(document).ready(function(){});  (0) 2012.03.10
ajax 뒤로가기 구현  (0) 2012.03.08
jquery 사용시 prototype.js 충돌시 해결 방법  (0) 2012.03.03
ajax와 뒤로가기  (0) 2012.02.06
Ajax와 뒤로가기 버튼  (0) 2012.02.05

설정

트랙백

댓글

* location.href : 프로퍼티   * location.replace() : 메소드임.

location.href : 브라우저 옵션을 손대지 않았을 때, 브라우저의 주소 값이 바뀌면 브라우저는 '인터넷 임시파일'에 캐시가 있는지를 먼저 보고, 있으면 그걸 보여줌.

 

location.replace() : 메소드가 실행 될 때마다 매번 서버에 접속해서 페이지를 가져옴.

* location.href = http://www.mimul.com : [뒤로] 버튼을 눌렀을 시 이전 URL로 이동

* location.replace(http://www.minmul.com) : [뒤로] 버튼을 눌렀을 시 이전, 이전 페이지로 바꿔줌.

인터넷 임시파일을 사용 안함.

설정

트랙백

댓글

// looping a dom html collection

for(var i = 0, node; node = hCell[i++];){

// dosomething with node

}

 

or

 

var i = arr.length; while(i--){}

설정

트랙백

댓글

1. <form> <input type='button' value='click To Go To the Bottom Of The Page' onclick="parent.location='#code'"></form>

<a name='code'> ??? </a>

 

2.

<a href='#code'> click To Go To the Bottom Of The Page </a>

<a name='code'> ??? </a>

설정

트랙백

댓글