{"id":16148222,"url":"https://github.com/chanwit/vuejs-springboot","last_synced_at":"2026-03-18T18:05:53.110Z","repository":{"id":39180710,"uuid":"250970561","full_name":"chanwit/vuejs-springboot","owner":"chanwit","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-04T14:44:00.000Z","size":5398,"stargazers_count":1,"open_issues_count":28,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-10T13:04:17.649Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"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/chanwit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-29T06:41:27.000Z","updated_at":"2021-01-25T05:42:23.000Z","dependencies_parsed_at":"2023-02-02T16:19:10.027Z","dependency_job_id":null,"html_url":"https://github.com/chanwit/vuejs-springboot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chanwit/vuejs-springboot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanwit%2Fvuejs-springboot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanwit%2Fvuejs-springboot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanwit%2Fvuejs-springboot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanwit%2Fvuejs-springboot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chanwit","download_url":"https://codeload.github.com/chanwit/vuejs-springboot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanwit%2Fvuejs-springboot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28912911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T12:13:43.263Z","status":"ssl_error","status_checked_at":"2026-01-30T12:13:22.389Z","response_time":66,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-10T00:31:57.832Z","updated_at":"2026-01-30T12:33:13.422Z","avatar_url":"https://github.com/chanwit.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple CRUD with Vue.js and Spring Boot\n \nThis example app shows how to build a basic CRUD app with Spring Boot 2.1, Spring Data, and Vue.js.\n\nPlease read [Build a Simple CRUD App with Spring Boot and Vue.js](https://developer.okta.com/blog/2018/11/20/build-crud-spring-and-vue) to see how this app was created.\n\n**Prerequisites:** [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html), [Node.js](https://nodejs.org/), and [Yarn](https://yarnpkg.com/). \n\n\u003e [Okta](https://developer.okta.com/) has Authentication and User Management APIs that reduce development time with instant-on, scalable user infrastructure. Okta's intuitive API and expert support make it easy for developers to authenticate, manage and secure users and roles in any application.\n\n* [Getting Started](#getting-started)\n* [Links](#links)\n* [Help](#help)\n* [License](#license)\n\n## Getting Started\n\nTo install this example application, run the following commands:\n\n```bash\ngit clone https://github.com/oktadeveloper/okta-spring-boot-vue-crud-example.git\ncd okta-spring-boot-vue-crud-example\n```\n\nThis will get a copy of the project installed locally. To install all of its dependencies and start each app, follow the instructions below.\n\nTo run the server, cd into the `server` folder and run:\n \n```bash\n./gradlew bootRun\n```\n\nTo run the client, cd into the `client` folder and run:\n \n```bash\nyarn install \u0026\u0026 yarn run serve\n```\n\n### Create a New OIDC App in Okta\n\nTo create a new OIDC app on Okta:\n\n1. Log in to your developer account, navigate to **Applications**, and click on **Add Application**.\n3. Select **Single-Page App** and click **Next**. \n4. Give the application a name and click **Done**.\n\n#### Server Configuration\n\nSet your domain and copy the `clientId` into `server/src/main/resources/application.yml`. \n\n**NOTE:** The value of `{yourOktaDomain}` should be something like `dev-123456.oktapreview`. Make sure you don't include `-admin` in the value!\n\n```yaml\nokta:\n  oauth2:\n    client-id: {yourClientId}\n    issuer: https://{yourOktaDomain}/oauth2/default\n```\n\n#### Client Configuration\n\nFor the client, set the `issuer` and copy the `clientId` into `client/src/router.js`.\n\n```js\nVue.use(Auth, {  \n  issuer: 'https://{yourOktaDomain}/oauth2/default',  \n  client_id: '{yourClientId}',  \n  redirect_uri: window.location.origin + '/implicit/callback',  \n  scope: 'openid profile email'  \n});\n```\n\n## Links\n\nThis example uses the following open source libraries from Okta:\n\n* [Okta Spring Boot Starter](https://github.com/okta/okta-spring-boot)\n* [Okta Vue SDK](https://github.com/okta/okta-oidc-js/tree/master/packages/okta-vue)\n\n## Help\n\nPlease post any questions as comments on the [blog post](https://developer.okta.com/blog/2018/11/20/build-crud-spring-and-vue), or visit our [Okta Developer Forums](https://devforum.okta.com/). You can also email developers@okta.com if would like to create a support ticket.\n\n## License\n\nApache 2.0, see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanwit%2Fvuejs-springboot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchanwit%2Fvuejs-springboot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanwit%2Fvuejs-springboot/lists"}