1.spring boot全局配置文件application.properties
#spring boot的全局配置文件,可以对一些默认配置的配置值进行修改 #默认为8080 server.port=9090 #默认为/ server.context-path=/molianzhonglong
2.starter pom
以下来源于:http://docs.spring.io/spring-boot/docs/1.5.3.BUILD-SNAPSHOT/reference/htmlsingle/
Spring Boot application starters
Starter for building MVC web applications using Thymeleaf views |
||
Starter for using Couchbase document-oriented database and Spring Data Couchbase |
||
Starter for JMS messaging using Apache Artemis |
||
Starter for using Spring Web Services |
||
Starter for using Java Mail and Spring Framework’s email sending support |
||
Starter for using Redis key-value data store with Spring Data Redis and the Jedis client |
||
Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container |
||
Starter for using GemFire distributed data store and Spring Data GemFire |
||
Starter for JMS messaging using Apache ActiveMQ |
||
Starter for using Elasticsearch search and analytics engine and Spring Data Elasticsearch |
||
Starter for using Spring Integration |
||
Starter for testing Spring Boot applications with libraries including JUnit, Hamcrest and Mockito |
||
Starter for using JDBC with the Tomcat JDBC connection pool |
||
Starter for building web applications using Spring Mobile |
||
Starter for using Java Bean Validation with Hibernate Validator |
||
Starter for building hypermedia-based RESTful web application with Spring MVC and Spring HATEOAS |
||
Starter for building RESTful web applications using JAX-RS and Jersey. An alternative to |
||
Starter for using Neo4j graph database and Spring Data Neo4j |
||
Starter for using Spring Data LDAP |
||
Starter for building WebSocket applications using Spring Framework’s WebSocket support |
||
Starter for aspect-oriented programming with Spring AOP and AspectJ |
||
Starter for using Spring AMQP and Rabbit MQ |
||
Starter for using Cassandra distributed database and Spring Data Cassandra |
||
Starter for using Spring Social Facebook |
||
Starter for JTA transactions using Atomikos |
||
Starter for using Spring Security |
||
Starter for building MVC web applications using Mustache views |
||
Starter for using Spring Data JPA with Hibernate |
||
Core starter, including auto-configuration support, logging and YAML |
||
Starter for building MVC web applications using Groovy Templates views |
||
Starter for building MVC web applications using FreeMarker views |
||
Starter for using Spring Batch |
||
Stater for using Spring Social LinkedIn |
||
Starter for using Spring Framework’s caching support |
||
Starter for using the Apache Solr search platform with Spring Data Solr |
||
Starter for using MongoDB document-oriented database and Spring Data MongoDB |
||
Starter for using jOOQ to access SQL databases. An alternative to |
||
Spring Boot Narayana JTA Starter |
||
Starter for using Spring Cloud Connectors which simplifies connecting to services in cloud platforms like Cloud Foundry and Heroku |
||
Starter for JTA transactions using Bitronix |
||
Starter for using Spring Social Twitter |
||
Starter for exposing Spring Data repositories over REST using Spring Data REST |
相关推荐
- 使用Maven创建一个新的项目,并在pom.xml文件中添加Spring Boot Starter Web依赖。 - **11.2. 添加classpath依赖** - 在项目的classpath中添加所需的依赖库。 - **11.3. 编写代码** - **11.3.1. @...
- 在 `pom.xml` 文件中添加 Spring Boot Maven 依赖,这通常意味着引入 `spring-boot-starter-parent` 作为父项目,它可以提供依赖管理,使得在声明其他依赖时不需要指定版本号。 - 编写一个启动类,启动类通常是一...
示例 【不断完善中】" 暗示了这是一个关于Spring Boot项目构建过程中的POM文件(Project Object Model)的示例教程,其中可能包含了不同版本或配置的POM文件,用于演示如何在Spring Boot项目中管理依赖。POM文件是...
- 添加依赖:在`pom.xml`或`build.gradle`文件中引入`spring-boot-starter-data-jpa`和`mybatis-spring-boot-starter`依赖。 - 配置数据源:Spring Boot会自动发现并配置数据源,只需要在`application.properties`...
Spring Boot主要使用`application.properties`或`application.yml`作为全局配置文件,它提供了强大的属性绑定功能,可以直接将配置文件中的属性映射到Java对象。 ### 5. 健康检查与Actuator Actuator是Spring Boot...
在压缩包文件名称列表中的 "spring-boot-master" 可能是项目源码的根目录,里面可能包含pom.xml或build.gradle构建文件,src/main目录下的java和resources文件夹分别存放Java代码和资源配置,还有可能有其他配置文件...
在项目的`pom.xml`或`build.gradle`文件中,引入`spring-boot-starter-mybatis`依赖,例如对于Maven: ```xml <groupId>org.springframework.boot <artifactId>spring-boot-starter-mybatis ``` 2. **配置...
`spring-boot-starter-mybatis`是Spring Boot生态中的一个“起步依赖”(Starter),它简化了Mybatis在Spring Boot应用中的配置,使得开发者无需手动编写大量的XML配置文件,就能享受到Mybatis的便利。通过这个起步...
在 Spring Boot 项目中,`pom.xml` 通常包含 `spring-boot-starter-parent` 作为父 pom,它提供了默认的构建配置和依赖管理。 6. `target` 目录: Maven 编译后产生的输出目录,包括编译的类文件、资源文件和最终的 ...
通过添加`spring-boot-starter-mybatis`依赖,我们可以快速地在Spring Boot项目中引入MyBatis,省去了配置文件的繁琐步骤。在`pom.xml`中加入以下依赖: ```xml <groupId>org.springframework.boot ...
1. **添加依赖**:在`pom.xml`文件中,我们需要引入`spring-boot-starter-mybatis`的依赖。例如,对于Spring Boot 2.1.4版本,添加如下代码: ```xml <groupId>org.springframework.boot <artifactId>spring-...
- **添加依赖**:在`pom.xml`或`build.gradle`文件中,引入Spring Boot Starter MyBatis的依赖,如1.3.0版本: ```xml <groupId>org.springframework.boot <artifactId>spring-boot-starter-data-jpa ...
- 添加依赖:在`pom.xml`或`build.gradle`文件中引入`spring-boot-starter-mybatis`依赖。 - 配置数据源:Spring Boot提供了多种数据源配置方式,如JDBC、DataSource等,需根据实际需求选择并配置。 - 创建...
Spring Boot以其简洁的配置和快速启动的特点,已经成为Java开发者的首选框架之一。而Mybatis作为一款轻量级的持久层框架,以其灵活的SQL操作和强大的映射功能深受喜爱。当Spring Boot与Mybatis结合时,可以极大地...
创建Spring Boot应用的第一步通常是选择一个起步依赖(Starter POM)。这些起步依赖是Spring Boot预先定义好的Maven或Gradle模块,包含了一组相关的依赖。例如,如果你想使用Spring Web,可以选择`spring-boot-...
- **了解Spring Boot特性**:深入解析Spring Boot的关键特性,如自动配置、starter依赖等。 - **迁移到生产环境**:指导如何将Spring Boot应用部署至生产环境,涉及性能调优、监控等方面。 - **高级主题**:探讨更深...
3. 运行应用:找到解压后的可执行jar文件,如`spring-boot-starter-mybatis-spring-boot-2.3.0.jar`,使用`java -jar spring-boot-starter-mybatis-spring-boot-2.3.0.jar`命令启动应用。 4. 监控应用:通过`jps`...
- **添加依赖**:在`pom.xml`文件中添加Spring Boot的MyBatis starter依赖,以及MyBatis本身和数据库驱动的依赖。 ```xml <groupId>org.springframework.boot <artifactId>spring-boot-starter-data-jpa ...