일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RESTful
- apache
- development
- Tomcat #SpringFramework
- 웹개발
- Maven
- springboot
- mysql
- Web
- SpringSecurity
- install
- Oracle11g
- 스프링부트 #springboot #project #Intellij
- 환경변수
- postman
- SpringInitializer
- Developer
- oracle
- tcping
- IntelliJ
- 스프링시큐리티
- ojdbc
- sqldeveloper
- springboot #controller #jsp
- 스프링부트
- restapi
- HATEOAS
- undefined
- Database
- mssql
- Today
- Total
목록Web Framework (12)
여백에 도장 찍기
Spring boot 프로젝트를 생성한 뒤, JSP 를 이용해 View를 나타내고자 한다면 아래의 설정이 필요하다. 1. pom.xml 에 dependency 추가 javax.servlet jstl org.apache.tomcat.embed tomcat-embed-jasper 2. src/main 하위에 webapp/WEB-INF/jsp 디렉터리 생성 3. application.properties 파일 안에 view 디렉터리 설정 spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp 4. jsp 코드 생성하고, 관련 소스코드 동작하는지 Test url mapping을 위한 Controller 작성 import org.springframewor..
Spring Security is a framework that focuses on providing both authentication and authorization to Java applications. Like all Spring projects. the real power of Spring Security is found in how easily it can be extended to meet custom requirements [ref: https://spring.io/projects/spring-security] 스프링 시큐리티는 자바 애플리케이션을 위한 인증과 권한 양쪽을 제공하는데 초점이 맞춰진 프레임워크이다. 스프링 시큐리티의 진정한 힘은 고객 요구사항을 만족하기 위해 얼마나 쉽게 확장..
IntelliJ IDEA(Ultimate)에서 Spring boot Web Project를 생성해보자. 1) File > New > Project 클릭 > SDK > JDK 버전 선택 > Next 2) Type: Select 'Maven Project' or 'Gradle Project' 3) Dependency 추가 4) 그 결과, 다음과 같은 프로젝트 디렉터리를 갖게 된다. 5) src/main/java/com/example/demo/ 하위의 DemoApplication.java 코드를 실행시켜 보자. spring boot의 경우에는 WAS인 Tomcat을 내장하고 있기 때문에 port를 지정해주기만 하면 된다. 따로 지정하지 않으면 default port는 8080 이다. 6) 지정하고자 한다면 s..
Spring boot 프로젝트에서 Controller에 RequestMapping 시, JSP를 Return 하게 해보자. Settings 1) 관련 Dependency 추가 (pom.xml 파일에) javax.servlet jstl org.apache.tomcat.embed tomcat-embed-jasper 2) 디렉터리 생성 src/main/ 디렉터리 밑에 webapp/WEB-INF/jsp 디렉터리 생성하고, 해당 디렉터리 밑에 사용할 jsp 들을 넣는다고 하자. 3) application.properties 속성파일에 해당 jsp 를 참조할 수 있게 설정해준다. spring.mvc.view.prefix: /WEB-INF/jsp/ spring.mvc.view.suffix: .jsp Test Cont..
"Spring boot는 Spring Framework 를 더 빠르고 쉽게 사용할 수 있도록 도와주는 툴입니다." >>> 지금부터 Spring Boot 프로젝트를 생성하여 보겠습니다. Create Project 1. https://start.spring.io/ , Spring Initializer 사이트에 접속하여, 손쉽게 프로젝트를 생성할 수 있습니다. 설정을 마친 뒤, Generate Project 를 누르면 Local PC 상에 testapp.zip 파일이 생성됩니다. 2. 개발툴인 Intellij 에서 해당 zip 파일의 압축을 푼 디렉터리를 Import 합니다. Import 하고자 하는 디렉터리는 쉽게말해, pom.xml을 포함하고 있는 상위디렉터리를 선택하면 됩니다. Select 'Maven'..