일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- oracle
- 호이스팅
- 자바
- pandas
- java
- Javascript
- pem
- PostgreSQL
- Kibana
- IntelliJ
- github
- isNotEmpty
- spring
- 리눅스
- mysql
- git
- analytics4
- DBMS
- MariaDB
- MongoDB
- isempty
- 티스토리챌린지
- 오블완
- Python
- iBatis
- 명령어
- SQL
- Linux
- mssql
- Today
- Total
목록SPRING (76)
hanker

1. openlayers js, css 다운로드 https://openlayers.org/download/ OpenLayers - Get the Code If you want to try out OpenLayers without downloading anything (not recommended for production), include the following in the head of your html page: openlayers.org v.6.4.3-dist.zip 다운로드 2. 스프링 프로젝트에 삽입 3. mapView.jsp 소스 Projection EPSG:4326 EPSG:3857 Precision OpenLayers 에 있는 소스는 namespace import형식으로 되어있음. 소스 ..

1. classpath:/mapper/aliasMybatis.xml 파일을 만들어 소스 작성 BoardVO클래스에 대한 alias 설정 : boardVO 2. root-context.xml 소스 추가 sqlSessionFactory 빈을 설정할 때 같이 읽어주도록 설정 - 추가

서버 실행 시 No bean named 'springSecurityFilterChain' is defined 오류가 뜨면 1. web.xml 확인 - contextConfigLocation의 security-context.xml 설정 확인. 2. security-context.xml 확인 - http 요소가 있는지 확인

1. security-context.xml 수정 - 기존에 임시로 지정해줬던 user, admin 계정을 주석처리 후 jdbc 연결설정 코드 추가 - (dataSource 추가) - users 테이블 추가 Column = username, password, enabled - 테이블 값 insert - username : admin00 , password : pw00, enabled : 1 - ex) insert into users(username, password, enabled) values('admin00', 'pw00', '1'); insert into users(username, password, enabled) values('user00', 'pw00', '1'); - authorities 테이..

1. pom.xml 추가설정 org.springframework.security spring-security-taglibs ${org.springframework-version} 2. security-context.xml 설정 변경 현재 프로젝트 구조 화면은 무료 템플릿을 사용을 하겠습니다. home.jsp https://templated.co/assembly Assembly by TEMPLATED A nice modern business-style design. templated.co 링크를 누르시면 무료로 다운받을 수 있습니다. loginForm.jsp https://colorlib.com/wp/template/login-form-v1/ Login Form v1 by Colorlib - Free HT..

1. pom.xml 설정 1.8 4.2.5.RELEASE 1.6.10 1.6.6 org.springframework.security spring-security-web ${org.springframework-version} org.springframework.security spring-security-config ${org.springframework-version} org.springframework.security spring-security-taglibs ${org.springframework-version} 2. web.xml 설정 contextConfigLocation /WEB-INF/spring/root-context.xml /WEB-INF/spring/appServlet/security-c..