积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(407)Java(407)Spring(319)ActiveMQ(48)Apacke Wicket(5)Apache Unomi(3)

语言

全部英语(377)中文(简体)(29)中文(繁体)(1)

格式

全部PDF文档 PDF(279)TXT文档 TXT(67)其他文档 其他(61)
 
本次搜索耗时 0.162 秒,为您找到相关结果约 407 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • ActiveMQ
  • Apacke Wicket
  • Apache Unomi
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • TXT文档 TXT
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 JAVA 应用与开发 - 控制台应用程序设计

    0 码力 | 63 页 | 2.84 MB | 1 年前
    3
  • pdf文档 《Java 应用与开发》课程讲义 - 王晓东

    以门和警报设计作为示例,一般来说,门都有 open() 和 close() 这两个动作。通过 抽象类和接口来定义这个抽象概念: 1 abstract class Door { 2 public abstract void open(); 3 public abstract void close (); 4 } 1 interface Door { 2 public abstract void open(); 3 将这三个功能都放在接口里面,但需要用到报警功能的类就需要实现这个接口中 的 open() 和 close(),也许这个类根本就不具备 open() 和 close() 这两个功能,比如火灾 报警器。不合理规划 Door 的 open() 、close() 和 alarm() 根本就属于两个不同范畴内的行为: • open() 和 close() 属于门本身固有的行为特性。 • alarm() alarm() 属于延伸的附加行为。 更为合理的思路 ‚ 单独将报警设计为一个接口,包含 alarm() 行为;ƒ Door 设计为单独的抽象类, 包含 open() 和 close() 两种行为;„ 设计一个报警门继承 Door 类和实现 Alarm 接口。 . 课程配套代码 ± package sample.advance.door 7.4 嵌套类 7.4.1 什么是嵌套类 Java 语言支持
    0 码力 | 330 页 | 6.54 MB | 1 年前
    3
  • pdf文档 Apache Wicket 10.x Reference Guide

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 9.1. Class Application and request processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 11.1. What is a model? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86 11.6. Model chaining . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
    0 码力 | 336 页 | 7.16 MB | 1 年前
    3
  • pdf文档 Apache Wicket 9.x Reference Guide

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 9.1. Class Application and request processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 11.1. What is a model? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 11.6. Model chaining . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
    0 码力 | 335 页 | 7.15 MB | 1 年前
    3
  • pdf文档 Apache Wicket 8.x Reference Guide

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 9.1. Class Application and request processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77 11.1. What is a model? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 11.6. Model chaining . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
    0 码力 | 350 页 | 9.95 MB | 1 年前
    3
  • pdf文档 Apache Wicket 7.x Reference Guide

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 9.1. Class Application and request processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77 11.1. What is a model? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 11.5. Model chaining . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
    0 码力 | 346 页 | 10.00 MB | 1 年前
    3
  • epub文档 Spring Boot 2.0.0.M4 Reference Guide

    example Upgrading from an earlier version of Spring Boot 11. Developing your first Spring Boot application Creating the POM Adding classpath dependencies Writing the code The @RestController and @RequestMapping Gradle Ant Starters 14. Structuring your code Using the “default” package Locating the main application class 15. Configuration classes Importing additional configuration classes Importing XML configuration injection 18. Using the @SpringBootApplication annotation 19. Running your application Running from an IDE Running as a packaged application Using the Maven plugin Using the Gradle plugin Hot swapping 20. Developer
    0 码力 | 583 页 | 501.03 KB | 1 年前
    3
  • pdf文档 Spring Framwork Web on Servlet Stack v5.3.36 SNAPSHOT

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 1.3.4. Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72 Model Design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . for request processing, while actual work is performed by configurable delegate components. This model is flexible and supports diverse workflows. The DispatcherServlet, as any Servlet, needs to be declared
    0 码力 | 259 页 | 3.58 MB | 1 年前
    3
  • epub文档 Spring Boot 2.0.0.M3 Reference Guide

    example Upgrading from an earlier version of Spring Boot 11. Developing your first Spring Boot application Creating the POM Adding classpath dependencies Writing the code The @RestController and @RequestMapping Gradle Ant Starters 14. Structuring your code Using the “default” package Locating the main application class 15. Configuration classes Importing additional configuration classes Importing XML configuration injection 18. Using the @SpringBootApplication annotation 19. Running your application Running from an IDE Running as a packaged application Using the Maven plugin Using the Gradle plugin Hot swapping 20. Developer
    0 码力 | 590 页 | 513.07 KB | 1 年前
    3
  • epub文档 Spring Boot 1.4.0.RELEASE Reference Documentation

    example Upgrading from an earlier version of Spring Boot 11. Developing your first Spring Boot application Creating the POM Adding classpath dependencies Writing the code The @RestController and @RequestMapping Gradle Ant Starters 14. Structuring your code Using the “default” package Locating the main application class 15. Configuration classes Importing additional configuration classes Importing XML configuration injection 18. Using the @SpringBootApplication annotation 19. Running your application Running from an IDE Running as a packaged application Using the Maven plugin Using the Gradle plugin Hot swapping 20. Developer
    0 码力 | 554 页 | 493.90 KB | 1 年前
    3
共 407 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 41
前往
页
相关搜索词
TerminalapplicationprogrammingpdflecturenotesforJavaApplicationandDevelopmentApacheWicket10ReferenceGuideSpringBoot2.0M4FramworkWebonServletStackv53.36SNAPSHOTM31.4RELEASEDocumentation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩