{"id":13470270,"url":"https://github.com/wildfly/wildfly","last_synced_at":"2025-09-09T21:23:52.097Z","repository":{"id":37241531,"uuid":"764708","full_name":"wildfly/wildfly","owner":"wildfly","description":"WildFly Application Server","archived":false,"fork":false,"pushed_at":"2025-05-12T08:03:39.000Z","size":294423,"stargazers_count":3103,"open_issues_count":102,"forks_count":2244,"subscribers_count":186,"default_branch":"main","last_synced_at":"2025-05-12T16:24:36.623Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"https://wildfly.org","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wildfly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2010-07-08T20:46:07.000Z","updated_at":"2025-05-11T00:42:01.000Z","dependencies_parsed_at":"2024-04-15T14:11:41.249Z","dependency_job_id":"4cdd396d-3de5-4a19-9664-34321115ab0e","html_url":"https://github.com/wildfly/wildfly","commit_stats":{"total_commits":29106,"total_committers":522,"mean_commits":"55.758620689655174","dds":0.8954511097368241,"last_synced_commit":"f4db62c4db191f50142ac057e1fa0aad2d7c162f"},"previous_names":[],"tags_count":166,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fwildfly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fwildfly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fwildfly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fwildfly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wildfly","download_url":"https://codeload.github.com/wildfly/wildfly/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253774934,"owners_count":21962254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-07-31T16:00:27.408Z","updated_at":"2025-05-12T16:25:01.938Z","avatar_url":"https://github.com/wildfly.png","language":"Java","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://wildfly.org\"\u003e\n      \u003cimg src=\"logo/wildfly_logo.svg\" alt=\"wildfly logo\" title=\"wildlfy\" width=\"600\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nWildFly Application Server\n========================\nhttps://wildfly.org\n\n* Fast Startup\n* Small Footprint\n* Modular Design\n* Unified Configuration and Management\n\nAnd of course Jakarta EE and MicroProfile!\n\nBuilding\n-------------------\n\nPrerequisites:\n\n* JDK 17 or newer - check `java -version`\n* Maven 3.6.0 or newer - check `mvn -v`\n* On *nix systems, make sure that the maximum number of open files for the user running the build is at least 4096\n  (check `ulimit -n`) or more, depending on what other i/o intensive processes the user is running.\n\nTo build with your own Maven installation:\n\n    mvn install\n\nAlternatively, you can use the Maven Wrapper script that downloads and installs (if necessary) the required Maven version to\n`~/.m2/wrapper` and runs it from there. On Linux, run\n\n    ./mvnw install\n\nOn Windows\n\n    mvnw install\n\n\nStarting and Stopping WildFly\n------------------------------------------\nChange to the bin directory after a successful build\n\n$ cd build/target/wildfly-\\[version\\]/bin\n\nStart the server in domain mode\n\n    ./domain.sh\n\nStart the server in standalone mode\n\n    ./standalone.sh\n\nTo stop the server, press Ctrl + C, or use the admin console\n\n    ./jboss-cli.sh --connect command=:shutdown\n\nCheck 'Getting Started Guide' in the WildFly documentation for more information about how to start and stop WildFly.\n\nDocumentation\n------------------------------------------\n\n* https://docs.wildfly.org/\n\nContributing\n------------------\nPlease see the instructions available in the [contribution guide](CONTRIBUTING.md).\n\nBuild vs. Dist directories\n--------------------------\n\nAfter running `mvn install`, WildFly will be available in two distinct directories, `build` and `dist`.\n\n* The `build` directory contains a build of WildFly that is based on Maven artifact resolution for module configuration\n* The `dist` directory, on the other hand, contains a full distributable build of WildFly\n\nUsing the `build` directory makes iterating with subsystem or module development easier since there is no need to rebuild the whole of WildFly or copy JAR files around on every change.\n\nThe `dist` directory is better suited when a full build of WildFly is needed for development or test purposes.\n\nRunning the Testsuite\n--------------------\nThe testsuite module contains several submodules including the following:\n\n* \"smoke\" -- core tests that should be run as part of every build of the AS. Failures here will fail the build.\n* \"api\" -- tests of features that involve end user use of the public JBoss AS 8 API. Should be run with no failures before any major commits.\n* \"cluster\" -- tests of the WildFly HA clustering features. Should be run with no failures before any major commits.\n* \"domain\" -- tests of the domain management features. Should be run with no failures before any major commits.\n* \"integration\" -- tests of a WildFly standalone server's internals. Should be run with no failures before any major commits.\n* \"spec\" -- tests of features that only involve end user use of the Jakarta EE spec APIs. Should be run with no failures before any major commits.\n\nFor basic smoke tests, simply: `mvn test`\n\nTo run all the tests\n\n    mvn install -DallTests\n\nUsing Eclipse\n-------------\n1. Install the latest version of eclipse\n2. Make sure Xmx in eclipse.ini is at least 1280M, and it's using JDK 17\n3. Launch eclipse and install the m2e plugin, make sure it uses your repo configs\n   (get it from: http://www.eclipse.org/m2e/\n   or install \"Maven Integration for Eclipse\" from the Eclipse Marketplace)\n4. In eclipse preferences Java-\u003eCompiler-\u003eErrors/Warnings-\u003eDeprecated and restricted\n   set forbidden reference to WARNING\n5. In eclipse preferences Java-\u003eCode Style, import the cleanup, templates, and\n   formatter configs in [ide-configs/eclipse](https://github.com/wildfly/wildfly-core/tree/main/ide-configs) in the wildfly-core repository.\n6. In eclipse preferences Java-\u003eEditor-\u003eSave Actions enable \"Additional Actions\",\n   and deselect all actions except for \"Remove trailing whitespace\"\n7. Use import on the root pom, which will pull in all modules\n8. Wait (m2e takes a while on initial import)\n\nLicense\n-------\n* [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\n","funding_links":[],"categories":["Java","III. Network and Integration","网络编程"],"sub_categories":["1. Servers (Web Server and Application Server)"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fwildfly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwildfly%2Fwildfly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fwildfly/lists"}