https://github.com/xtenzq/spring-boot-vue-solr
Example search web application based on Solr, Spring Boot, Vue and Tailwind
https://github.com/xtenzq/spring-boot-vue-solr
apache-solr example-app example-application example-project fullstack-application java pet-project search-app search-application solr solr-configuration spring-boot template-project vue
Last synced: about 1 month ago
JSON representation
Example search web application based on Solr, Spring Boot, Vue and Tailwind
- Host: GitHub
- URL: https://github.com/xtenzq/spring-boot-vue-solr
- Owner: xtenzQ
- License: mit
- Created: 2023-06-12T14:07:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T16:01:58.000Z (almost 2 years ago)
- Last Synced: 2025-01-25T22:40:03.573Z (3 months ago)
- Topics: apache-solr, example-app, example-application, example-project, fullstack-application, java, pet-project, search-app, search-application, solr, solr-configuration, spring-boot, template-project, vue
- Language: Java
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ Spring Boot Vue 3 Solr Web Application Example
[](https://github.com/spring-projects/spring-boot)
> **๐ง Work in Progress ๐ง**
> This repository is currently under development and is not ready for production use. ๐ ๏ธ It's a work in progress, and I'm actively working on enhancing its functionality and features.This application was created as a pet project to improve Java, Spring, and Apache Solr development skills, as well as to
learn Vue. It showcases the functionality of a search system based on Apache Solr, with the backend implemented in Java
and Spring Boot, and the frontend using Vue.Based on [**@jonashackt/spring-boot-vuejs**](https://github.com/jonashackt/spring-boot-vuejs). Go give him a star โญ
## ๐ Running
### Manual way
1. Initialize database with a [**script**](backend/src/main/resources/init-script.sql);
2. Create a new user in your database for the newly created schema;
3. Set up a connection in [`application.properties`](backend/src/main/resources/init-script.sql):
```properties
spring.datasource.url=jdbc:mysql://localhost:3306/search_app_example?useSSL=false
spring.datasource.username=searchapp
spring.datasource.password=searchapp
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
4. Install artifacts
```bash
mvn run clean
```
5. Run Solr server:
```bash
solr start -p 8983
```
6. Run application
```bash
mvn --projects backend spring-boot:run
```## ๐ค Contribution
I'd love to accept your contributions to this project. I use GitHub pull requests for this purpose. Consult [GitHub Help](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) for more information on using pull requests.## ๐งก Find this repository useful?
Like the website or got inspired by it? Please support it by joining __[stargazers](https://github.com/xtenzQ/xtenzQ.github.io/stargazers)__ for this repository. :star:## License
```
MIT LicenseCopyright (c) 2023 Nikita Rusetskii
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```