java - Intellij -Project structure settings (spring facet config) - where are they stored? -


have project migrating on netbeans intellij.

intellij recognises spring config files , gives warning "please configure/setup spring facet modules". requires manually adding these under project structure settings.

i don't want other team members have manually, wish check these settings git, according that, there no changed files in project directory (i have standard ignores added .gitignore). have tried searches of file contents config file names etc , turns nothing too.

so question settings stored? in file typically on ignored list or in location external project directory?

essentially idea related configuration project under .idea folder, example, project workspace iteams can find in .idea/worksapce.xml, include spring features mentioned.

but not idea keep things in vcs, .idea folder ignore default in configuration items store local env related full path local gradle, e.g.

<?xml version="1.0" encoding="utf-8"?> <project version="4">   <component name="gradlesettings">     <option name="linkedexternalprojectssettings">       <gradleprojectsettings>         <option name="distributiontype" value="local" />         <option name="externalprojectpath" value="$project_dir$" />         <option name="gradlehome" value="c:/devtools/gradle-2.14.1" />         <option name="gradlejvm" value="#java_home" />         <option name="modules">           <set>             <option value="$project_dir$" />           </set>         </option>         <option name="useautoimport" value="true" />         <option name="mymodules">           <set>             <option value="$project_dir$" />           </set>         </option>       </gradleprojectsettings>     </option>   </component> </project> 

here files under .idea folder proejct

enter image description here


update:

for spring facets, it's under module .iml file, like

<component name="facetmanager">     <facet type="spring" name="spring">       <configuration>         <fileset id="fileset" name="spring application context" removed="false">           <file>file://$module_dir$/src/main/resources/meta-inf/spring/integration-beans.xml</file>         </fileset>       </configuration>     </facet>   </component> 

Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -