SpringBoot
bingfengzhihuo521
这个作者很懒,什么都没留下…
展开
-
SpringBoot 中文手册 --Part IV --29 使用SQL数据库
29.使用SQL数据库29.1 配置数据源 29.1.1 内部数据库支持29.1.2 连接到生产数据库29.1.3 连接到JNDI数据库29.2 使用JDBC 模板29.3 JPA和“Spring Data” 29.3.1 实体类 29.3.2 Spring Data JPA 原型 29.3.3 创建和销毁 JPA数据库 29.3.4 在视图中打开 实体管理器29.4 使用H2的WEB 控制台 29.5 使用JOOQ翻译 2017-10-27 11:05:34 · 288 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --41 测试
本文翻译自: https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-testing 41 测试Spring Boot提供一些工具和注解在你测试你的应用时提供帮助。测试支持由两个模块提供;spring-boot-test包含核心项目,而spring-boot-test-aut翻译 2017-11-23 15:51:57 · 691 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --37-40
37 Hazelcast如果Hazelcast在类路径上,Spring Boot将自动配置一个可以在应用程序中注入的HazelcastInstance 。只有在找到配置的情况下才会创建HazelcastInstance 。 你可以定义一个com.hazelcast.config.Config bean,我们将使用它。如果你的配置定义了实例名称,我们会尝试找到现有的实例,而不是去创建一个新的实例。翻译 2017-11-14 11:57:26 · 261 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --36 用JTA进行分布式事务
本文翻译自 https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-jta 36 用JTA进行分布式事务Spring Boot使用Atomikos或Bitronix嵌入式事务管理器支持跨多个XA资源的分布式JTA事务。在部署到合适的Java EE应用服务器时,也支持JTA事务翻译 2017-11-14 11:31:57 · 570 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --32 消息
本文翻译自 Spring Boot 官方文档 -32.Messaging 32. 消息Spring 框架对整合消息系统提供了大量的支持:从简单的JMS API使用到使用 JmsTemplate 来完成接受异步消息的基础框架。Spring AMQP 为‘Advanced Message Queuing Protocol’提供了相同的特性集,Spring Boot也为RabbitTemplate 和R翻译 2017-11-01 11:48:49 · 476 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --35 发送邮件
本文翻译自 :https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-email 35 发送邮件Spring框架为使用JavaMailSender接口发送电子邮件提供了一个简单的抽象,Spring Boot为它提供了自动配置以及一个入门模块。 | 查看参考文档,了解如何使用翻译 2017-11-13 15:56:03 · 250 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --34 验证
本文翻译自 https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-validation 34.验证只要JSR-303实现(例如Hibernate验证器)位于类路径上,Bean Validation 1.1 支持的方法验证功能就会自动启用。这允许bean方法在器参数和/或返回翻译 2017-11-13 15:40:22 · 196 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --33 调用REST服务
本文翻译自 https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-restclient 33. 调用REST 服务你的应用如果需要调用远程的REST服务,你可以使用Spring框架的RestTemplate类。由于RestTemplate实例经常需要在使用前定制,所以Spr翻译 2017-11-13 15:27:21 · 729 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --28 安全
28章讲解Spring Boot中使用 Spring Security及相应的配置。 对OAuth2的支持(认证服务、资源服务),对于用户信息中的token类型更改的设置支持,可以自定义用户信息Rest模板(客户端定义。单点登录定义)以及 Actuator 安全翻译 2017-10-26 17:59:35 · 776 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --27
受 http://blog.csdn.net/column/details/13024.html 专栏启发,对后续部分进行翻译,方便使用时查阅;本文翻译自 https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle 27. 开发WEB应用 SpringBoot 很翻译 2017-10-20 17:52:51 · 693 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --31 缓存
本文翻译自 https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-caching31 缓存Spring 框架为一个应用明显增加缓存提供支持。在它的核心中,抽象将缓存应用在方法上,通过基于缓存可获取的信息减少执行的次数。缓存逻辑应用透明,对调用没任何干扰。Sp翻译 2017-10-31 14:59:42 · 835 阅读 · 0 评论 -
SpringBoot 中文手册 --Part IV --30 使用NoSQL技术
本文翻译自 :https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-nosql30. 使用NoSQL技术工作Spring Data 提供了额外的工程帮助你访问多种NoSQL技术包括 MongoDB,Neo4J, Elasticsearch, Solr, Re翻译 2017-10-30 16:12:05 · 363 阅读 · 0 评论 -
关于停止Spring Boot翻译工作说明
由于之前在网上没找到中文的Spring Boot官方文档,阅读有些许不流畅,故最近在尝试自行翻译SpringBoot的官方文档,但是偶然间在GitBook上发现已经由翻译好的全文档,甚是欣喜,故加快学习进度,不再重复造轮子。阅读传送门 Spring-Boot-Reference-Guide原创 2017-11-27 09:42:56 · 335 阅读 · 0 评论