├── .idea ├── compiler.xml ├── encodings.xml ├── google-java-format.xml ├── libraries │ ├── Maven__ch_qos_logback_logback_classic_1_1_11.xml │ ├── Maven__ch_qos_logback_logback_core_1_1_11.xml │ ├── Maven__com_fasterxml_classmate_1_3_3.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_8_0.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_8_7.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_8_7.xml │ ├── Maven__javax_validation_validation_api_1_1_0_Final.xml │ ├── Maven__org_apache_activemq_activemq_broker_5_14_3.xml │ ├── Maven__org_apache_activemq_activemq_client_5_14_3.xml │ ├── Maven__org_apache_activemq_activemq_openwire_legacy_5_14_3.xml │ ├── Maven__org_apache_geronimo_specs_geronimo_j2ee_management_1_1_spec_1_0_1.xml │ ├── Maven__org_apache_geronimo_specs_geronimo_jms_1_1_spec_1_1_1.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_11.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_11.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_11.xml │ ├── Maven__org_fusesource_hawtbuf_hawtbuf_1_11.xml │ ├── Maven__org_hibernate_hibernate_validator_5_3_4_Final.xml │ ├── Maven__org_jboss_logging_jboss_logging_3_3_0_Final.xml │ ├── Maven__org_mongodb_bson_3_4_2.xml │ ├── Maven__org_mongodb_mongodb_driver_3_4_2.xml │ ├── Maven__org_mongodb_mongodb_driver_core_3_4_2.xml │ ├── Maven__org_projectlombok_lombok_1_16_14.xml │ ├── Maven__org_slf4j_jcl_over_slf4j_1_7_24.xml │ ├── Maven__org_slf4j_jul_to_slf4j_1_7_24.xml │ ├── Maven__org_slf4j_log4j_over_slf4j_1_7_24.xml │ ├── Maven__org_slf4j_slf4j_api_1_7_24.xml │ ├── Maven__org_springframework_boot_spring_boot_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_activemq_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_data_mongodb_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_web_1_5_2_RELEASE.xml │ ├── Maven__org_springframework_data_spring_data_commons_1_13_1_RELEASE.xml │ ├── Maven__org_springframework_data_spring_data_mongodb_1_10_1_RELEASE.xml │ ├── Maven__org_springframework_spring_aop_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_beans_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_context_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_core_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_expression_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_jms_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_messaging_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_tx_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_web_4_3_7_RELEASE.xml │ ├── Maven__org_springframework_spring_webmvc_4_3_7_RELEASE.xml │ └── Maven__org_yaml_snakeyaml_1_17.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── workspace.xml ├── pom.xml ├── spring-boot-jms-tutorial.iml ├── src └── main │ ├── java │ └── lankydan │ │ └── tutorial │ │ ├── application │ │ └── Application.java │ │ ├── documents │ │ └── OrderTransaction.java │ │ ├── jms │ │ └── OrderTransactionReceiver.java │ │ ├── repositories │ │ └── OrderTransactionRepository.java │ │ └── rest │ │ └── OrderTransactionController.java │ └── resources │ └── application.properties └── target └── classes ├── application.properties └── lankydan └── tutorial ├── application └── Application.class ├── documents └── OrderTransaction.class ├── jms └── OrderTransactionReceiver.class ├── repositories └── OrderTransactionRepository.class └── rest └── OrderTransactionController.class /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/google-java-format.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_classic_1_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_core_1_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_classmate_1_3_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_8_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_8_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_8_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_validation_validation_api_1_1_0_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_activemq_activemq_broker_5_14_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_activemq_activemq_client_5_14_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_activemq_activemq_openwire_legacy_5_14_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_geronimo_specs_geronimo_j2ee_management_1_1_spec_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_geronimo_specs_geronimo_jms_1_1_spec_1_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_fusesource_hawtbuf_hawtbuf_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hibernate_hibernate_validator_5_3_4_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_jboss_logging_jboss_logging_3_3_0_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mongodb_bson_3_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mongodb_mongodb_driver_3_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mongodb_mongodb_driver_core_3_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_projectlombok_lombok_1_16_14.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_7_24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_log4j_over_slf4j_1_7_24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_activemq_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_tomcat_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_1_5_2_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_data_spring_data_commons_1_13_1_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_1_10_1_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_aop_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_beans_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_context_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_core_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_expression_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_jms_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_messaging_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_tx_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_web_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_webmvc_4_3_7_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 132 | 133 | 134 | 135 | JMS message listener invoker needs to establish shared Connection 136 | Could not refresh JMS Connection for destination 137 | sharedConnection 138 | 139 | 140 | 141 | 144 | 145 | 146 | 161 | 162 | 163 | 168 | 169 | 170 | 171 | 172 | 173 | 176 | 177 | 180 | 181 | 182 | 183 | 184 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 213 | 214 | 217 | 218 | 219 | 220 | 223 | 224 | 227 | 228 | 231 | 232 | 233 | 234 | 237 | 238 | 241 | 242 | 245 | 246 | 249 | 250 | 253 | 254 | 255 | 256 | 259 | 260 | 263 | 264 | 267 | 268 | 271 | 272 | 275 | 276 | 279 | 280 | 281 | 282 | 285 | 286 | 289 | 290 | 293 | 294 | 297 | 298 | 301 | 302 | 305 | 306 | 307 | 308 | 311 | 312 | 315 | 316 | 319 | 320 | 323 | 324 | 327 | 328 | 331 | 332 | 333 | 334 | 337 | 338 | 341 | 342 | 345 | 346 | 349 | 350 | 353 | 354 | 357 | 358 | 359 | 360 | 363 | 364 | 367 | 368 | 371 | 372 | 375 | 376 | 379 | 380 | 383 | 384 | 385 | 386 | 389 | 390 | 393 | 394 | 397 | 398 | 401 | 402 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 428 | 429 | 430 | 431 | 432 | 433 | 436 | 437 | 450 | 451 | 452 | 457 | 458 | 459 | 485 | 486 | 487 | 512 | 513 | 520 | 521 | 522 | 535 | 536 | 537 | 544 | 547 | 549 | 550 | 551 | 552 | 553 | 554 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 593 | 594 | 595 | 606 | 607 | 608 | 618 | 619 | 626 | 627 | 628 | 629 | 647 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 666 | 667 | 668 | 669 | 1497686740536 670 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 713 | 714 | 715 | 716 | 717 | file://$PROJECT_DIR$/src/main/java/lankydan/tutorial/rest/OrderTransactionController.java 718 | 17 719 | 720 | 722 | 723 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 724 | 1075 725 | 726 | 728 | 729 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 730 | 938 731 | 732 | 734 | 735 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 736 | 1164 737 | 738 | 740 | 741 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 742 | 1179 743 | 744 | 746 | 747 | jar://$MAVEN_REPOSITORY$/org/apache/activemq/activemq-client/5.14.3/activemq-client-5.14.3-sources.jar!/org/apache/activemq/ActiveMQConnection.java 748 | 329 749 | 750 | 752 | 753 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 754 | 1185 755 | 756 | 758 | 759 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/AbstractJmsListeningContainer.java 760 | 491 761 | 762 | 764 | 765 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/DefaultMessageListenerContainer.java 766 | 923 767 | 768 | 770 | 771 | jar://$MAVEN_REPOSITORY$/org/springframework/spring-jms/4.3.7.RELEASE/spring-jms-4.3.7.RELEASE-sources.jar!/org/springframework/jms/listener/AbstractJmsListeningContainer.java 772 | 397 773 | 774 | 776 | 777 | 778 | 779 | 780 | 782 | 783 | 784 | 785 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1.8 1181 | 1182 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 4.0.0 6 | 7 | spring-boot-jms-tutorial 8 | spring-boot-jms-tutorial 9 | 1.0.0 10 | 11 | 12 | org.springframework.boot 13 | spring-boot-starter-parent 14 | 15 | 16 | 2.3.1.RELEASE 17 | 18 | 19 | 20 | 1.8 21 | 22 | 23 | 24 | 25 | org.springframework.boot 26 | spring-boot-starter-activemq 27 | 28 | 29 | org.apache.activemq 30 | activemq-broker 31 | 32 | 33 | com.fasterxml.jackson.core 34 | jackson-databind 35 | 36 | 37 | org.springframework.boot 38 | spring-boot-starter-web 39 | 40 | 41 | org.springframework.boot 42 | spring-boot-starter-data-mongodb 43 | 44 | 45 | org.projectlombok 46 | lombok 47 | 48 | 49 | 50 | 51 | 52 | 53 | org.springframework.boot 54 | spring-boot-maven-plugin 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /spring-boot-jms-tutorial.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /src/main/java/lankydan/tutorial/application/Application.java: -------------------------------------------------------------------------------- 1 | package lankydan.tutorial.application; 2 | 3 | import org.slf4j.Logger; 4 | import org.slf4j.LoggerFactory; 5 | import org.springframework.boot.SpringApplication; 6 | import org.springframework.boot.autoconfigure.SpringBootApplication; 7 | import org.springframework.boot.autoconfigure.jms.DefaultJmsListenerContainerFactoryConfigurer; 8 | import org.springframework.context.annotation.Bean; 9 | import org.springframework.context.annotation.ComponentScan; 10 | import org.springframework.data.mongodb.repository.config.EnableMongoRepositories; 11 | import org.springframework.jms.annotation.EnableJms; 12 | import org.springframework.jms.config.DefaultJmsListenerContainerFactory; 13 | import org.springframework.jms.config.JmsListenerContainerFactory; 14 | import org.springframework.jms.support.converter.MappingJackson2MessageConverter; 15 | import org.springframework.jms.support.converter.MessageConverter; 16 | import org.springframework.jms.support.converter.MessageType; 17 | import org.springframework.util.ErrorHandler; 18 | 19 | import javax.jms.ConnectionFactory; 20 | 21 | @EnableJms 22 | @ComponentScan(basePackages = "lankydan.tutorial") 23 | @EnableMongoRepositories(basePackages = "lankydan.tutorial") 24 | @SpringBootApplication 25 | public class Application { 26 | 27 | private static final Logger log = LoggerFactory.getLogger(Application.class); 28 | 29 | public static void main(String[] args) { 30 | SpringApplication.run(Application.class, args); 31 | } 32 | 33 | // Only required due to defining myFactory in the receiver 34 | @Bean 35 | public JmsListenerContainerFactory myFactory( 36 | ConnectionFactory connectionFactory, 37 | DefaultJmsListenerContainerFactoryConfigurer configurer 38 | ) { 39 | DefaultJmsListenerContainerFactory factory = new DefaultJmsListenerContainerFactory(); 40 | 41 | // anonymous class 42 | factory.setErrorHandler( 43 | new ErrorHandler() { 44 | @Override 45 | public void handleError(Throwable t) { 46 | log.warn("An error has occurred in the transaction", t); 47 | } 48 | }); 49 | 50 | // lambda function 51 | factory.setErrorHandler(t -> log.warn("An error has occurred in the transaction", t)); 52 | 53 | configurer.configure(factory, connectionFactory); 54 | return factory; 55 | } 56 | 57 | // Serialize message content to json using TextMessage 58 | @Bean 59 | public MessageConverter jacksonJmsMessageConverter() { 60 | MappingJackson2MessageConverter converter = new MappingJackson2MessageConverter(); 61 | converter.setTargetType(MessageType.TEXT); 62 | converter.setTypeIdPropertyName("_type"); 63 | return converter; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/main/java/lankydan/tutorial/documents/OrderTransaction.java: -------------------------------------------------------------------------------- 1 | package lankydan.tutorial.documents; 2 | 3 | import lombok.Getter; 4 | import lombok.NoArgsConstructor; 5 | import lombok.Setter; 6 | import lombok.ToString; 7 | import org.springframework.data.annotation.Id; 8 | import org.springframework.data.mongodb.core.mapping.Document; 9 | 10 | import java.math.BigDecimal; 11 | 12 | @Document 13 | @Getter 14 | @Setter 15 | @ToString(exclude = "id") 16 | @NoArgsConstructor 17 | public class OrderTransaction { 18 | 19 | @Id private String id; 20 | private String from; 21 | private String to; 22 | private BigDecimal amount; 23 | 24 | public OrderTransaction(final String from, final String to, final BigDecimal amount) { 25 | this.from = from; 26 | this.to = to; 27 | this.amount = amount; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/lankydan/tutorial/jms/OrderTransactionReceiver.java: -------------------------------------------------------------------------------- 1 | package lankydan.tutorial.jms; 2 | 3 | import lankydan.tutorial.documents.OrderTransaction; 4 | import lankydan.tutorial.repositories.OrderTransactionRepository; 5 | import org.slf4j.Logger; 6 | import org.slf4j.LoggerFactory; 7 | import org.springframework.jms.annotation.JmsListener; 8 | import org.springframework.stereotype.Component; 9 | 10 | @Component 11 | public class OrderTransactionReceiver { 12 | 13 | private static final Logger log = LoggerFactory.getLogger(OrderTransactionReceiver.class); 14 | 15 | private final OrderTransactionRepository transactionRepository; 16 | 17 | public OrderTransactionReceiver(OrderTransactionRepository transactionRepository) { 18 | this.transactionRepository = transactionRepository; 19 | } 20 | 21 | private int count = 1; 22 | 23 | @JmsListener(destination = "OrderTransactionQueue", containerFactory = "myFactory") 24 | public void receiveMessage(OrderTransaction transaction) { 25 | log.info("<" + count + "> Received <" + transaction + ">"); 26 | count++; 27 | // throw new RuntimeException(); 28 | transactionRepository.save(transaction); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/main/java/lankydan/tutorial/repositories/OrderTransactionRepository.java: -------------------------------------------------------------------------------- 1 | package lankydan.tutorial.repositories; 2 | 3 | import lankydan.tutorial.documents.OrderTransaction; 4 | import org.springframework.data.mongodb.repository.MongoRepository; 5 | 6 | public interface OrderTransactionRepository extends MongoRepository {} 7 | -------------------------------------------------------------------------------- /src/main/java/lankydan/tutorial/rest/OrderTransactionController.java: -------------------------------------------------------------------------------- 1 | package lankydan.tutorial.rest; 2 | 3 | import lankydan.tutorial.documents.OrderTransaction; 4 | import org.slf4j.Logger; 5 | import org.slf4j.LoggerFactory; 6 | import org.springframework.jms.core.JmsTemplate; 7 | import org.springframework.web.bind.annotation.PostMapping; 8 | import org.springframework.web.bind.annotation.RequestBody; 9 | import org.springframework.web.bind.annotation.RequestMapping; 10 | import org.springframework.web.bind.annotation.RestController; 11 | 12 | @RestController 13 | @RequestMapping("/transaction") 14 | public class OrderTransactionController { 15 | 16 | private static final Logger log = LoggerFactory.getLogger(OrderTransactionController.class); 17 | 18 | private final JmsTemplate jmsTemplate; 19 | 20 | public OrderTransactionController(JmsTemplate jmsTemplate) { 21 | this.jmsTemplate = jmsTemplate; 22 | } 23 | 24 | @PostMapping("/send") 25 | public void send(@RequestBody OrderTransaction transaction) { 26 | log.info("Sending a transaction."); 27 | jmsTemplate.convertAndSend( 28 | "OrderTransactionQueue", transaction); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.activemq.user=admin 2 | spring.activemq.password=admin 3 | spring.activemq.broker-url=tcp://localhost:61616?jms.redeliveryPolicy.maximumRedeliveries=1 -------------------------------------------------------------------------------- /target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 8090 2 | spring.activemq.user=admin 3 | spring.activemq.password=admin 4 | spring.activemq.broker-url=tcp://localhost:61616?jms.redeliveryPolicy.maximumRedeliveries=1 -------------------------------------------------------------------------------- /target/classes/lankydan/tutorial/application/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/spring-boot-jms/366624211d76dc5036b313be5f4da37317f813f9/target/classes/lankydan/tutorial/application/Application.class -------------------------------------------------------------------------------- /target/classes/lankydan/tutorial/documents/OrderTransaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/spring-boot-jms/366624211d76dc5036b313be5f4da37317f813f9/target/classes/lankydan/tutorial/documents/OrderTransaction.class -------------------------------------------------------------------------------- /target/classes/lankydan/tutorial/jms/OrderTransactionReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/spring-boot-jms/366624211d76dc5036b313be5f4da37317f813f9/target/classes/lankydan/tutorial/jms/OrderTransactionReceiver.class -------------------------------------------------------------------------------- /target/classes/lankydan/tutorial/repositories/OrderTransactionRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/spring-boot-jms/366624211d76dc5036b313be5f4da37317f813f9/target/classes/lankydan/tutorial/repositories/OrderTransactionRepository.class -------------------------------------------------------------------------------- /target/classes/lankydan/tutorial/rest/OrderTransactionController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lankydan/spring-boot-jms/366624211d76dc5036b313be5f4da37317f813f9/target/classes/lankydan/tutorial/rest/OrderTransactionController.class --------------------------------------------------------------------------------