• Spring boot(二)—Web开发


    上篇文章介绍了Spring boot初级教程:spring boot(一):入门篇,方便大家快速入门、了解实践Spring boot特性;本篇文章接着上篇内容继续为大家介绍spring boot的其它特性(有些未必是spring boot体系桟的功能,但是是spring特别推荐的一些开源技术本文也会介绍)。

    1.Web开发

      spring boot web开发非常的简单,其中包括常用的json输出、filters、property、log等。

    2.Json接口开发

      在以前的spring 开发的时候需要我们提供json接口的时候需要做那些配置呢?大概有以下配置:

     (1)添加Jackjson等相关jar包;

     (2)配置Spring Controller扫描;

     (3)对接的方法添加@ResponseBody;

    就这样我们会经常由于配置错误,导致406错误等等,spring boot如何做呢,只需要类添加 @RestController 即可,默认类中的方法都会以json的格式返回。

     1 @RestController
     2 public class HelloWorldController {
     3     @RequestMapping("/getUser")
     4     public User getUser() {
     5         User user=new User();
     6         user.setUserName("小明");
     7         user.setPassWord("xxxx");
     8         return user;
     9     }
    10 }

    如果我们需要使用页面开发只要使用@Controller ,下面会结合模板来说明

    3.自定义Filter

    我们常常在项目中会使用filters用于录调用日志、排除有XSS威胁的字符、执行权限验证等等。Spring Boot自动添加了OrderedCharacterEncodingFilter和HiddenHttpMethodFilter,并且我们可以自定义Filter。

    两个步骤:

     (1)实现Filter接口,实现Filter方法;

     (2)添加@Configurationz 注解,将自定义Filter加入过滤链;

    代码如下:

     1 @Configuration
     2 public class WebConfiguration {
     3     @Bean
     4     public RemoteIpFilter remoteIpFilter() {
     5         return new RemoteIpFilter();
     6     }
     7     
     8     @Bean
     9     public FilterRegistrationBean testFilterRegistration() {
    10 
    11         FilterRegistrationBean registration = new FilterRegistrationBean();
    12         registration.setFilter(new MyFilter());
    13         registration.addUrlPatterns("/*");
    14         registration.addInitParameter("paramName", "paramValue");
    15         registration.setName("MyFilter");
    16         registration.setOrder(1);
    17         return registration;
    18     }
    19     
    20     public class MyFilter implements Filter {
    21         @Override
    22         public void destroy() {
    23             // TODO Auto-generated method stub
    24         }
    25 
    26         @Override
    27         public void doFilter(ServletRequest srequest, ServletResponse sresponse, FilterChain filterChain)
    28                 throws IOException, ServletException {
    29             // TODO Auto-generated method stub
    30             HttpServletRequest request = (HttpServletRequest) srequest;
    31             System.out.println("this is MyFilter,url :"+request.getRequestURI());
    32             filterChain.doFilter(srequest, sresponse);
    33         }
    34 
    35         @Override
    36         public void init(FilterConfig arg0) throws ServletException {
    37             // TODO Auto-generated method stub
    38         }
    39     }
    40 }

    4.自定义Property

    在web开发的过程中,我经常需要自定义一些配置文件,如何使用呢?

    (1)配置在application.properties中:

      com.neo.title=纯洁的微笑

      com.neo.description=分享生活和技术

    (2)自定义配置类:

     1 @Component
     2 public class NeoProperties {
     3     @Value("${com.neo.title}")
     4     private String title;
     5     @Value("${com.neo.description}")
     6     private String description;
     7 
     8     //省略getter settet方法
     9 
    10     }

    5.log配置

     配置输出的地址和输出级别

    1 logging.path=/user/local/log
    2 logging.level.com.favorites=DEBUG
    3 logging.level.org.springframework.web=INFO
    4 logging.level.org.hibernate=ERROR

    path为本机的log地址,logging.level 后面可以根据包路径配置不同资源的log级别。

    6.数据库操作

    在这里我重点讲述mysql、spring data jpa的使用,其中mysql 就不用说了大家很熟悉,jpa是利用Hibernate生成各种自动化的sql,如果只是简单的增删改查,基本上不用手写了,spring内部已经帮大家封装实现了。

    下面简单介绍一下如何在spring boot中使用:

     (1)添加相关jar包

    1  <dependency>
    2         <groupId>org.springframework.boot</groupId>
    3         <artifactId>spring-boot-starter-data-jpa</artifactId>
    4     </dependency>
    5      <dependency>
    6         <groupId>mysql</groupId>
    7         <artifactId>mysql-connector-java</artifactId>
    8     </dependency>

      (2)添加配置文件

    1 spring.datasource.url=jdbc:mysql://localhost:3306/test
    2 spring.datasource.username=root
    3 spring.datasource.password=root
    4 spring.datasource.driver-class-name=com.mysql.jdbc.Driver
    5 
    6 spring.jpa.properties.hibernate.hbm2ddl.auto=update
    7 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
    8 spring.jpa.show-sql= true

     其实这个hibernate.hbm2ddl.auto参数的作用主要用于:自动创建|更新|验证数据库表结构,有四个值:

    1. create: 每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。
    2. create-drop :每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。
    3. update:最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据 model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等 应用第一次运行起来后才会。
    4. validate :每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。

     dialect 主要是指定生成表名的存储引擎为InneoDB;
     show-sql 是否打印出自动生产的SQL,方便调试的时候查看;

     (3)添加实体类和DAO包

     1 @Entity
     2 public class User implements Serializable {
     3 
     4     private static final long serialVersionUID = 1L;
     5     @Id
     6     @GeneratedValue
     7     private Long id;
     8     @Column(nullable = false, unique = true)
     9     private String userName;
    10     @Column(nullable = false)
    11     private String passWord;
    12     @Column(nullable = false, unique = true)
    13     private String email;
    14     @Column(nullable = true, unique = true)
    15     private String nickName;
    16     @Column(nullable = false)
    17     private String regTime;
    18 
    19     //省略getter settet方法、构造方法
    20 
    21 }

    dao只要继承JpaRepository类就可以,几乎可以不用写方法,还有一个特别有尿性的功能非常赞,就是可以根据方法名来自动的生产SQL,比如findByUserName 会自动生产一个以 userName 为参数的查询方法,比如 findAlll 自动会查询表里面的所有数据,

    比如自动分页等等。。

    **Entity中不映射成列的字段得加@Transient 注解,不加注解也会映射成列**

    1 public interface UserRepository extends JpaRepository<User, Long> {
    2     User findByUserName(String userName);
    3     User findByUserNameOrEmail(String username, String email);

    7.测试

     1 @RunWith(SpringJUnit4ClassRunner.class)
     2 @SpringApplicationConfiguration(Application.class)
     3 public class UserRepositoryTests {
     4 
     5     @Autowired
     6     private UserRepository userRepository;
     7 
     8     @Test
     9     public void test() throws Exception {
    10         Date date = new Date();
    11         DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);        
    12         String formattedDate = dateFormat.format(date);
    13         
    14         userRepository.save(new User("aa1", "aa@126.com", "aa", "aa123456",formattedDate));
    15         userRepository.save(new User("bb2", "bb@126.com", "bb", "bb123456",formattedDate));
    16         userRepository.save(new User("cc3", "cc@126.com", "cc", "cc123456",formattedDate));
    17 
    18         Assert.assertEquals(9, userRepository.findAll().size());
    19         Assert.assertEquals("bb", userRepository.findByUserNameOrEmail("bb", "cc@126.com").getNickName());
    20         userRepository.delete(userRepository.findByUserName("aa1"));
    21     }
    22 
    23 }

    当让 spring data jpa 还有很多功能,比如封装好的分页,可以自己定义SQL,主从分离等等,这里就不详细讲了。。。

                                                           END

  • 相关阅读:
    Linux系统常用工具集
    Storm安装部署
    Linux下搭建Elasticsearch7.6.2集群
    解决SpringMVC @RequestBody无法注入基本数据类型
    微服务概念
    HashMap的原理简单介绍
    mysql进阶
    vue 路由缓存 keep-alive include和exclude无效
    el-date-picker 时间日期格式,选择范围限制
    RedisTemplate使用rightPushAll往list中添加时的注意事项
  • 原文地址:https://www.cnblogs.com/zsliu/p/8325369.html
Copyright © 2020-2023  润新知