SpringBoot 기초

6261 단어 Java
pom.xml

<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>2.3.1.RELEASEversion>
    <relativePath/> 
parent>


<dependency>
  <groupId>org.springframework.bootgroupId>
  <artifactId>spring-boot-starter-webartifactId>
dependency>

Spring boot
설정 보다 습관 이 좋 습 니 다.
대부분의 Spring Boot 프로그램 은 아주 적은 Spring 설정 만 필요 합 니 다.
로그 기록 장치 로 Logback 을 기본적으로 사용 합 니 다.
Spring Boot 의 디자인 은 가능 한 한 빨리 달 릴 수 있 도록 Spring 응용 프로그램 을 사용 하고 프로필 을 최대한 줄 이기 위 한 것 입 니 다.
Maven 은 모든 jar 가방 을 통합 시 켰 고,Spring Boot 는 모든 프레임 워 크 를 통합 시 켰 다.
학습 주소
http://localhost:8080/hello

Spring Boot 에 Tomcat 이 내장 되 어 있 습 니 다.
4.567914.spring boot 의 부모 의존 도 를 설정 합 니 다.
<parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.2.7.RELEASEversion>
        <relativePath/> 
 parent>

Spring Boot 프로젝트 는 보통*Application 이라는 입구 류 가 있 는데 입구 류 에 main 방법 이 있 습 니 다.이 main 방법 은 바로 표준 자바 응용 입구 방법 입 니 다.Spring Boot 의 전역 프로필 은 기본 설정 의 설정 값 을 수정 하 는 역할 을 합 니 다.저 희 는.properties 접미사 의 파일 을 직접 삭제 하고.yml 파일 을 사용 하여 간단 한 설정 을 한 다음@Value 를 사용 하여 설정 속성 을 가 져 옵 니 다.
yml 과 properties 가 동시에 존재 할 때 properties 를 위주 로 합 니 다.
server.port=8888
spring.http.encoding.charset=UTF-8
  • @Component:현재 클래스 가 자바 빈 임 을 나타 낸다
  • @ConfigurationProperties(prefix="student"):접두사 sutdent 의 설정 정 보 를 가 져 오 는 것 을 의미 합 니 다
  • 열 배치
    방법 도 간단 합 니 다.pom.xml 를 수정 하면 됩 니 다!
    공정 구조
    Spring Boot 지원 JSP,통합 MyBatis
    src/main/java-소스 코드 디 렉 터 리 src/main/resources-자원 파일 디 렉 터 리
  • static-모든 정적 자원 저장:js css images
  • templates-모든 모드 자원 저장:(SpringBoot 기본 jar 패 키 지 는 끼 워 넣 은 Tomcat 를 사용 하고 jsp 페이지 는 지원 되 지 않 음)모드 엔진(freemarker,thymeleaf)을 사용 할 수 있 습 니 다
  • application.properties-SpringBoot 의 프로필
  • pom.xml-maven 프로필

    좋은 웹페이지 즐겨찾기