일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- web 용어
- classification
- mglearn
- web 사진
- broscoding
- web 개발
- bccard
- Keras
- postorder
- discrete_scatter
- html
- 결합전문기관
- CES 2O21 참여
- inorder
- CES 2O21 참가
- paragraph
- 데이터전문기관
- 대이터
- KNeighborsClassifier
- 웹 용어
- tensorflow
- 자료구조
- vscode
- java역사
- 머신러닝
- C언어
- pycharm
- 재귀함수
- cudnn
- web
- Today
- Total
목록[IT] (431)
bro's coding
Events | jQuery API Documentation Attach a handler to an event for the elements. Bind an event handler to the “blur” JavaScript event, or trigger that event on an element. Bind an event handler to the “change” JavaScript event, or trigger that event on an element. Bind an event han api.jquery.com
JQuery의 selector는 tag, id, class등을 선택하는데 사용된다. - 버튼 클릭시 p tag 숨기기 - 버튼을 누르면 test라는 id를 가진 것을 숨기기 - id를 select할 땐, #을 사용한다. - 전부다 선택하기: * - 현재의 element 선택: this - p이고 class가 intro인 것 선택 - 첫 p element를 선택 - ul의 첫 li를 선택 - ul의 모든 첫li를 선택 - href를 다 선택 (하이퍼 레퍼런스) - target이 _blank이 아닌 것을 선택 (_blank: 새창열기) - 모든 버튼 선택 - table에서 짝수 선택 - table에서 홀수 선택
jQuery What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. jquery.com
package com.example.newsAnalysis.service; import com.example.newsAnalysis.mapper.CollectionMapper; import com.example.newsAnalysis.model.CollectionInfoVO; import com.example.newsAnalysis.model.CollectionStatusVO; import com.example.newsAnalysis.model.InputVO; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import org.springframework.beans.factory.annotation.Autowired;..
초기 설정: 전체 목록을 가지고 오는 것을 구현해 놓는다. 1. gradle에 dependency 추가 // application.properties #paging pagehelper.helper-dialect=postgresql pagehelper.reasonable=true pagehelper.support-methods-arguments=true 2. controller or service 에서 paging적용 package com.example.newsAnalysis.service; @Service public class CollectionDataService { @Autowired CollectionMapper mapper; public List dataStatus(InputVO inputVO)..
REST(REpresentational State Transfer) : 분산 환경 아키텍쳐 /다양한 시스템 간의 통신 / 자원에 식별자 부여 / HTTP Method 식별자(URI)가 부여된 자원정보를 표준화된 HTTP 메서드로 제어하는 소프트웨어 아키텍쳐 자원에 고유한 식별자를 부여하며 HTTP GET,POST,PUT,DELETE METHOD를 이용해 제어한다 특징 1. 웹에 존재하는 모든 자원에 고유한 URI(통합자원식별자:Uniform Resource Identifier)를 부여해 활용 HTTP GET(조회) , POST(생성) , PUT(수정), DELELTE(삭제) Method를 통해 제어 2. "다양한 클라이언트"에게 서비스를 제공, 클라이언트와 서버 역할의 명확한 분리가 가능. -> ..
**Spring + Tiles 연동** Tiles : 웹페이지 템플릿을 위한 프레임워크 반복적으로 jsp include or jstl c import로 처리되었던 view layout을 효과적으로 개발하고 유지보수하기 위한 프레임워크 **Spring + Tiles 연동** Tiles : 웹페이지 템플릿을 위한 프레임워크 반복적으로 jsp include or jstl c import로 처리되었던 view layout을 효과적으로 개발하고 유지보수하기 위한 프레임워크 **tiles 적용단계** 1. Maven : pom.xml tiles dependency 추가 org.apache.tiles tiles-jsp 3.0.3 org.apache.tiles tiles-core 3.0.3 2. template j..
@Configuration : 이 클래스는 스프링 환경설정을 위한 클래스임을 알리는 어노테이션 자바 클래스를 이용한 스프링 환경 설정을 위한 어노테이션 하나 이상의 @Bean 메서드를 제공함 @Bean : 라이브러리를 이용해 Bean을 생성할 때 사용하는 어노테이션 bean id 는 camelCase 소문자로 시작하는 메서드명이 된다 참고) @Component 개발자가 직접 만든 클래스에 명시하여 Bean 생성하는 어노테이션