일단 책하고 틀리다. ㅋㅋ 서블릿3.0 기술엔 WEB.XML이 없다.
그런데, 프로젝트에서 우측클릭 하면 서블릿 메뉴는 그대로 있다.
서블릿을 생성하면 클래스명 위에 어노테이션이 붙는데,
어노테이션으로 서블릿객체와 매핑 설정으로 변경되었다.
@WebServlet(description = "테스트 서블릿", urlPatterns = { "/TestServlet" })
Posted by 홍반장
Posted by 홍반장
<!DOCTYPE html PUBLIC "-//W3C// DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>jQuery -> XML -> Array : Parse </title> <script src="jquery-latest.min.js" type="text/javascript"> </script> <script type="application/javascript"> $(function(){ // 원하는 파라키터 호출 var param01 = querySt("anum"); //document.write(param01); $('#param01').html(param01); $.get("hello.xml", {}, function(xml){ $("item", xml).each(function(i){ var title = $(this).find("title"); alert("title 의 개수는 총 " + $(this).find("title").size() + " 개 입니다."); $.each(title, function(j){ $("#content_xml").append("j = " + j + " , " + $(this).text() + "<br />"); }); $("#contents").append(title.text()); }); }); $('p').each(function(index){ $(this).attr({ 'id': "para-" + index }); }); $('#btn').click(function(){ alert($('#para-1').text()); //태그내의 텍스트 읽어오기 }); // QueryString 호출 function querySt(ji){ hu = window.location.search.substring(1); gy = hu.split("&"); for (i = 0; i < gy.length; i++) { ft = gy[i].split("="); if (ft[0] == ji) { return ft[1]; } } } }); //close $( </script> </head> <body> <div id='content_xml'> </div> <br/> <div id='param01'> </div> <br/> <div id='contents'> </div> <p> C# </p> <p> ASP.NET </p> <p> SilverLight </p> <input type="button" id="btn" value="동적으로 생성된 id로 접근" /> </body> </html> |
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
- 홍반장
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |