I recently made a project and I used CRUD in it. Now I created another project and wanted to use it as well, but it appears that when I import Crud now the Crud.java is already modified and looks the same way I left it after editing it in the first project. To simply put it, both projects use the same Crud (but obviously shouldn't). CRUD's folder is in fact outside the project directory, and both projects link to that same directory. Is there any way to "elegantly" make different CRUDs for different projects, or I have to copy the CRUD edited after the first project, and then cut it out and put a "fresh" one in the modules folder? I think the same applies to Security module.
Play framework Crud and two projects
393 Views Asked by Raidmaster At
1
There are 1 best solutions below
Related Questions in PLAYFRAMEWORK
- Install Play 1.7.1 on Windows
- Handling of WebSocket Client Messages in Play Framework
- Handling WebSocket Connections in Play Framework
- Handling WebSocket Connections in Play Framework in Scala
- build.sbt error: value addRepositoryAuthentication is not a member of lmcoursier.CoursierConfiguration
- How to log incoming request with Scala & Play Framework?
- Optionally enable Scala play to accept mLTS credentials?
- reactivemongo with scala3, pekko, play-3
- Specs 2 - I want to mock one of the injected modules into the controller class
- Scala3 equivalent to -Wconf src filter
- Using Selenium in Scala play not only for testing
- How to execute PUT REST client code using playframework in scala
- ERROR akka.actor.ActorSystemImpl(applica Uncaught error from thread, shutting down JVM since 'akka.jvm-exit-on-fatal-error' is enabled for ActorSystem
- Autogenerating unnapply for play form handling in scala3 for single-element case classes
- Play framework + Java +Ebean models.Donation is NOT an Entity Bean registered with this server?
Related Questions in CRUD
- On the server side, it returns undefined but on the client side, logs the values no problem
- Query parameter works fine with fastapi application when tested locally but not working when the FastAPI application is deployed on AWS lambda
- How to perform CRUD operations on a static JSON array in Angular? (without API)
- Inertia & React CRUD without reloading page
- How do I make sure that a user has the right to delete something when making a delete route
- MudBlazor TextChanged Data Conversion
- I cannot delete a user
- "Cannot be resolved as a type" problem with Java
- Observable in Angular
- How do I get this data from server.js file to +page.svelte file?
- Laravel 9, Undefined variable $users
- How to handle concurrency issues in ASP.NET Core with Entity Framework Core when updating entities in a service?
- Laravel Crud Operations and Json Handling
- I can create course but can't update it. (Express, React)
- include_all_form_fields parameter for subfields in laravel backpack
Related Questions in CONFLICT
- Yocto conflicting error while building rootfs
- How to resolve a merge conflict in Git?
- Dependency Conflict with TOCropViewController in React Native Project
- R package building: importing functions with identical names
- i want to use im my requirements.txt this tensorflow~=2.3.0 version but i get an error
- Merge happens in reverse way while using GitHub
- Auto-conflict detection and resolution in Maria DB
- Remove git merge commit without conflict
- How to set utf-8 as default encoding for pull request merge conflict extension in azure devops?
- How to resolve version conflict for Parselmouth and Pandas during installation of pytz?
- AlpineJS conflict x-data with VueJS
- Ionic Framework generate and Angular ESLint 02-03 styleguide rule component naming conflict
- Ignoring files that are not present in the destination branch when merging a source branch into it with git
- Tailwind background utility class not working in Next.js(pages router)
- How to support "FULL JOIN" clause
Related Questions in PROJECTS
- Can't see items from one project in another C#
- Separate IntelliJ settings for projects
- Should I Use Multiple Targets or Separate Xcode Projects?
- How to compile a C++ File without making a project in Visual Studio 2017?
- Project Online read-only Error
- How to get my projects back on the "projects" window after clicking "close all projects" in file tab?
- VSTS Workflow for Microservices / Share Service Endpoints
- Search functionality in Github/Repo/Projects
- Organize Eclipse Projects
- All about C memory management
- run several .py file with local packages
- Merge two project with GIT
- SBT dynamic project dependency based on command line argument
- How to compile and run a C file in CodeBlocks which is outside a project?
- linux directory location best practices for software development
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think by the fact that you have "modified" the distributed crud module that comes packaged with Play!, you have essentially made a "new" module. If you made the change to the crud module because of a bug, you might want to log it.
I'm assuming you haven't made a change to the crud module because of a bug fix because otherwise you will have wanted the change in your second project too. In that case, you might want to take a copy of the crud module (the one in the Play distribution) and place it somewhere else in your hard drive (outside of the Play distribution and you may want to rename the module to something else to distinguish it from Play's actual crud distribution). Now for your first project that references this newly copied (and modified version of the crud module), you can refer to the local copy of this module in your dependencies.yml as described in this google group post.
It is probably best not to copy the modified crud module directly into your projects module folder because if you run this:
the "copied + modified" version of the crud module will be deleted.