java - Spring中一般那些框架是常用的?
阿神
阿神 2017-04-18 09:54:32
0
4
362

core Spring和Spring MVC应该是常用的,还有什么大家也会用到?
Spring Boot算不算?Spring Boot是不是和微服务Micro-Service有关系?

阿神
阿神

闭关修行中......

reply all(4)
大家讲道理

Spring
I recently worked on a small project that used a Spring batch processing framework. Suitable for multiple small-scale reading and batch writing operations.

<!--批处理-->
<dependency>
    <groupId>org.springframework.batch</groupId>
    <artifactId>spring-batch-core</artifactId>
    <version>${spring.batch.version}</version>
</dependency>
<dependency>
    <groupId>org.springframework.batch</groupId>
    <artifactId>spring-batch-infrastructure</artifactId>
    <version>${spring.batch.version}</version>
</dependency>

There are some frequently used frameworks in the spring project of the new idea project.

大家讲道理

I think Spring boot counts, because spring boot is easier to use than spring MVC and requires less configuration. It is highly recommended to learn Spring boot.

There are also spring data related projects, it depends on what storage you use. Generally speaking, they are spring-data-jpa, spring-data-redis, spring-data-elasticsearch, etc.

You can also learn about Spring security and Spring batch.

洪涛
  • SpringData, SpringSecurity, SpringBatch

  • Forget it. I can't say it's related. Microservices is a concept and SpringBoot is a framework. SpringBoot can indeed be built as a microservice, but it does not mean that other frameworks cannot.

巴扎黑

Spring-data is a must

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!