初学SpringBoot--ch03-SpringBoot入门

ch03-SpringBoot入门

  • 1.1 SpringBoot 使用 JSP
    • 1.1.1 添加Maven依赖
    • 1.1.2 添加编译路径
    • 1.1.3 配置视图解析器
    • 1.1.4 创建控制器:
    • 1.1.5 新建webapp文件夹
    • 1.1.6 新建index.jsp页面
    • 1.1.7 运行测试
  • 1.2 SpringBoot 使用 ApplicationContext
    • 1.2.1 创建UserService
    • 1.2.2 创建UserService实现类
    • 1.2.3 获取容器对象
  • 1.3 CommandLineRunner 接口
    • 1.3.1 创建HelloService
    • 1.3.2 创建HelloService实现类
    • 1.3.3 获取容器对象

1.1 SpringBoot 使用 JSP

SpringBoot不推荐使用jsp ,而是使用模板技术代替jsp。

1.1.1 添加Maven依赖

<dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>
        
        
        <dependency>
            <groupId>org.apache.tomcat.embedgroupId>
            <artifactId>tomcat-embed-jasperartifactId>
        dependency>
        
        
        <dependency>
            <groupId>javax.servletgroupId>
            <artifactId>javax.servlet-apiartifactId>
        dependency>
        
        <dependency>
            <groupId>javax.servlet.jspgroupId>
            <artifactId>javax.servlet.jsp-apiartifactId>
            

你可能感兴趣的:(SpringBoot学习,spring,boot,java,spring)