Skip to content

Example search web application based on Solr, Spring Boot, Vue and Tailwind

License

Notifications You must be signed in to change notification settings

xtenzQ/spring-boot-vue-solr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔎 Spring Boot Vue 3 Solr Web Application Example

versionjava stability-WIP

🚧 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. Go give him a star ⭐

🚀 Running

Manual way

  1. Initialize database with a script;
  2. Create a new user in your database for the newly created schema;
  3. Set up a connection in application.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
  1. Install artifacts
mvn run clean
  1. Run Solr server:
solr start -p 8983
  1. Run application
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 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 for this repository. ⭐

License

MIT License

Copyright (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.