개발(61)
-
spring2
bean 경로 error로 설정시 깔끔하게 나옴 ApplicationContext ctx = new GenericXmlApplicationContext("file:\\c:\\upload\\person.xml"); ApplicationContext ctx = new GenericXmlApplicationContext("classpath:stu.xml"); Student s1 = ctx.getBean("xxx", Student.class); System.out.println(s1); Student s2 = (Student)ctx.getBean("xxx"); s2.setAge(20); s2.setName("이순신"); System.out.println(s2.toString()); Student [name=홍길..
2024.02.05 -
스프링 준비
sts 기본 설정 general - workspace - 한글설정 css/jsp/html 한글설정 jre jdk11 기본 브라우저 chrome 스프링 import 후 ⇒ pom파일을 읽고 다운로드 pom파일 maven update : alt+ f5 build path 확인 classpath 확인 하기!!!!!!!!!!!!!! xml bean 에 id 찾기 ❗❗ no search bean 이면 id 가 틀린 것❗❗ 똑같은 아이디 두 개 를 bean 에 넣지 말 것 ❗❗ xml에 id 부여하기 Person.java package com.spring; public class Person { String name ="홍길동"; public Person() { super(); System.out.println("..
2024.02.05 -
cors
sample01_text2_POST ajax요청 v1: v2: ajax요청 json ajax요청 text { "username": "", "age": "" } ajax요청 json [ {"username": "", "age": ""}, {"username": "이순신", "age": "10"}, {"username": "강감찬", "age": "20"} ] ajax요청 json v1 : v2 : [ {"username": "","age":""}, {"username" : "유관순","age":"10"}, {"username" : "강감찬","age":"20"} ] ajax요청 html, jsp 가 각각 서버가 다른 경우 학생용 비동기 요청.html 교수용 jsp 파일에서 응답처리 : cross 도메인 문..
2024.01.15 -
json , ajax
map merge trim parseJSON 중요★★★★ each 100 200 300 400 100 200 300 400 합계 event a b ok ok2 $(function(){ //이벤트 $("#a").one("click", function(){ //이벤트를 한번만 실행 이벤트 실행후 자동으로 off ("click") 됨 console.log("ok"); }) }); $(function(){ //이벤트 $("#a").on("click mouseover", function(){ //이벤트를 한번만 실행 이벤트 실행후 자동으로 off ("click") 됨 console.log(" a 버튼 ok"); }) $("#b").on("click",function(){ console.log("trigger 버튼..
2024.01.15 -
jquery:CSS
04_traversing_filtering $(function(){ $("li").not(".my").css("color","red") .end() .not(":even").css("font-size","40-px"); }); //end doc $(function(){ $("li").not(function(i,e){ console.log($(this).text()); return this.innerText=="A4"; }).css("color","red") .end() .not(function(idx, ele){ return idx%3==0; }).css("font-size","40px") }); //end doc Hello A1 A2 A3 A4 A5 A6 A7 A8 $(function(){ var x ..
2024.01.13 -
ready, hierarchy
kkk함수 실행됨 Hello World 태그 선택자 Hello Hello2 World world2 var jdata1= $("#test"); console.log(jdata1);//fn console.log(jdata1.innerText);//fn의 경우 기존 js의 함수 사용이 안되고 jquery 함수 사용 //fn인 경우 .value => val () , innerText=> text(), innerHtml =>html() //img.src = "b.jpg" => jquery img.attr("src", "b.jpg") var x = $("p"); console.log(x); console.log($("#test2").text()); var jdata2 = $("#test2"); console.log..
2024.01.12