----------------------------------------------------------------------------------------------------------------
springboot 详解 (一) helloworld 下载demo
springboot 详解 (四)redis & filter 下载demo
springboot 详解 (五)interceptor 下载demo
springboot 详解 (六)servlet & scheduled & listener 下载demo
springboot 详解(七) dubbox & zookeeper 下载(productor) 下载(constumser)
springboot 详解(八) springboot & springcloud
----------------------------------------------------------------------------------------------------------------
其他文章参考:
(阿里巴巴 dubbo,有数据库,可执行 )dubbo zookeeper spring demo
(webservice+cxf+mybatis+mysql+springmvc) webservice + cxf 能够跑起来的cxf ,来这里,,
结果 如图
pom
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.curiousby.cn</groupId> <artifactId>SpringBootDubboxDemo</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>SpringBootDubboxDemo Maven Webapp</name> <url>http://maven.apache.org</url> <repositories> <repository> <id>spring-snapshots</id> <url>http://repo.spring.io/libs-snapshot</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>spring-snapshots</id> <url>http://repo.spring.io/libs-snapshot</url> </pluginRepository> </pluginRepositories> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.3.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.7</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>2.5.3</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.6</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.sgroschupf</groupId> <artifactId>zkclient</artifactId> <version>0.1</version> </dependency> </dependencies> <build> <finalName>SpringBootDubboxDemo</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> </plugins> </build> </project>
SpringBootDubboxDemo-Productor
application.properties
server.context-path=/SpringBootDubboxDemoProductor spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp application.hello=Hello baoyou #one datasource spring.datasource.url=jdbc:mysql://localhost:3306/database spring.datasource.username=root spring.datasource.password=root spring.datasource.driverClassName=com.mysql.jdbc.Driver
applicationContext-dubbox-productor.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:cache="http://www.springframework.org/schema/cache" xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:jms="http://www.springframework.org/schema/jms" xmlns:lang="http://www.springframework.org/schema/lang" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:oxm="http://www.springframework.org/schema/oxm" xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/tool http://www.springframework.org/schema/tool/spring-tool.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" default-autowire="byName"> <context:annotation-config /> <aop:aspectj-autoproxy /> <!-- 提供方应用名称信息,这个相当于起一个名字,我们dubbo管理页面比较清晰是哪个应用暴露出来的 --> <dubbo:application name="dubbox-productor"></dubbo:application> <!--使用注解方式暴露接口 --> <!--<dubbo:annotation package="com.curiousby.cn.service" /> --> <!-- 使用zookeeper注册中心暴露服务地址 --> <dubbo:registry address="zookeeper://dev10.aoiplus.openpf:2181" check="false" subscribe="false" register=""> </dubbo:registry> <!-- 要暴露的服务接口 --> <dubbo:service interface="com.curiousby.cn.service.UserService" ref="userServiceImpl" /> </beans>
public interface UserService { public User findById(int userId); }
@Transactional @Service public class UserServiceImpl implements UserService { @Resource UserDao userDao; @Override public User findById(int userId) { System.out.println("================productor==================="); User user = userDao.findById(userId); System.out.println("================productor==================="+user); return user; } }
@EnableTransactionManagement //事务自动扫描 @SpringBootApplication @ImportResource({"classpath:applicationContext-dubbox-productor.xml"}) public class SpringBootSampleApplication { public static void main(String[] args) { SpringApplication.run(SpringBootSampleApplication.class, args); } }
SpringBootDubboxDemo-Consumer
server.context-path=/SpringBootDubboxDemoConsumer spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp application.hello=Hello baoyou #one datasource spring.datasource.url=jdbc:mysql://localhost:3306/database spring.datasource.username=root spring.datasource.password=root spring.datasource.driverClassName=com.mysql.jdbc.Driver server.port=9090 server.session-timeout=60 # server.address=192.168.16.11
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd"> <!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 --> <dubbo:application name="dubbox-consumer" /> <dubbo:registry address="zookeeper://dev10.aoiplus.openpf:2181" /> <!-- 生成远程服务代理,可以和本地bean一样使用demoService --> <dubbo:reference id="userService" interface="com.curiousby.cn.service.UserService" /> </beans>
@EnableTransactionManagement //事务自动扫描 @SpringBootApplication @ImportResource({"classpath:applicationContext-dubbox-consumer.xml"}) public class SpringBootSampleApplication { public static void main(String[] args) { SpringApplication.run(SpringBootSampleApplication.class, args); } }
捐助开发者
在兴趣的驱动下,写一个免费
的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。
谢谢您的赞助,我会做的更好!
相关推荐
SpringBoot Dubbox 示例详解 SpringBoot Dubbox 是一个基于 Spring Boot 的 Dubbo 框架集成,它使得在 Spring Boot 应用中使用 Dubbo 变得更加简单和便捷。Dubbo 是阿里巴巴开源的一个高性能、轻量级的服务治理框架...
标题中的“springboot dubbox 实例 (springbootdubbox-productor)”指的是一个使用Spring Boot集成Dubbo的项目实例,其中“productor”意味着这是一个生产者服务,它将提供服务或者调用其他服务。 首先,我们需要...
**Dubbox 框架详解及使用实例** Dubbox 是由淘宝开源的一个基于 Java 的分布式服务框架,它是基于阿里巴巴的 Dubbo 进行了扩展和优化。Dubbox 提供了更多的特性和更好的社区支持,使其在微服务架构中广泛应用。本篇...
springboot-dubbox-web 前端管理 安装node.js 转到应用程序根目录 >npm install -g grunt-cli >npm install -g bower >npm install >bower install >grunt build:dev >grunt build:angular >npm start
用gradle构建的dubbox示例,支持dubbo rpc调用 和REST风格的服务调用。 运行示例: 1.下载zookeeper; 2.启动zookeeper服务(运行命令: {zookeeper dir}/bin/zkServer.[sh|bat] start); 3.运行provider项目下面的test...
在提供的压缩包文件"springboot-dubbox-simple-master"中,包含了一个完整的Spring Boot + Dubbox整合示例。这个项目已经实现了上述步骤,包括服务提供者和服务消费者,以及基于Avro和Thrift的REST服务。开发者可以...
综上所述,"dubbox服务例子" 是一个涵盖了服务提供者和服务消费者的实例,通过这两个角色的交互,我们可以学习如何在实际项目中利用 Dubbox 实现服务的发布、消费、负载均衡、容错处理以及监控等功能。这个示例对于...
在提供的"springboot+Zookeeper+dubbox"压缩包中,用户可以找到所有必要的开发文档、图解教程以及成功案例。这将帮助开发者快速上手,从环境搭建到实际开发,直至微服务的运行和管理,提供了一条龙的服务。通过学习...
dubbox web项目实例,编译了的最新颁布 2.8.4.直接可以使用入门学习。不用maven
基于SSM+AngularJS+Dubbox+SpringBoot的SOA分布式电商项目源码.zip 基于SSM+AngularJS+Dubbox+SpringBoot的SOA分布式电商项目源码.zip 基于SSM+AngularJS+Dubbox+SpringBoot的SOA分布式电商项目源码.zip 基于SSM+...
【标题】"dubbox+springmvc+mybatis实例及admin管理war包"涉及的核心技术栈包括了三个关键部分:Dubbo、SpringMVC和MyBatis,它们都是Java开发中的重要组件,常用于构建分布式服务系统。Dubbo是阿里巴巴开源的高性能...
【描述】表明这是一个结合了dubbox、springBoot和dubbo-monitor-web的项目源码,适合开发者进行学习和实践,以了解如何将这三个组件集成到一起,实现服务的监控和管理。 【标签】“dubbo monitor”进一步强调了本...
Dubbox 是一个基于 Spring 和 Apache Dubbo 的微服务框架,由淘宝开源,旨在提供轻量级、高性能的服务治理方案。2.8.4 版本是 Dubbox 的一个稳定版本,可能包含了一些新特性、优化或者修复了已知的问题。由于在阿里...
【描述】"已经打包好的dubbox的服务生产者和服务消费方,简单的demo"指出这是一个简易的dubbox应用实例,用于演示如何设置服务提供者和消费者。在分布式系统中,服务提供者负责暴露服务,而服务消费者则调用这些服务...
【标题】"dubbox2.8.4"是一个基于Java的开源框架,它是由当当网开发并维护的一个扩展版的Dubbo服务框架。Dubbo是阿里巴巴贡献的高性能、轻量级的服务治理框架,而dubbox则在其基础上添加了更多的特性与优化,为...
5. **负载均衡(Load Balance)**:Dubbox内置了多种负载均衡策略,如Random、RoundRobin、LeastActive等,用于在多个服务实例间分配调用请求,提高系统的可用性和性能。 6. **容错机制(Failing Over/Failing Fast...
【标题】"一.dubbox(dangdang V2.8.4)+springBoot(1.4.2.RELEASE)+dubbo-monitor-web 项目源码" 提供的是一个结合了Dubbo、Spring Boot以及dubbo-monitor-web的示例项目。这个项目的核心在于展示了如何将这些组件...
【描述】中提到的"整合最新实例及附件"意味着这个压缩包可能包含了一个完整的项目示例,帮助开发者了解如何将dubbox和Spring MVC结合在一起。通过博客链接...