복붙노트

[SPRING] IntelliJ IDEA에서 Spring 패싯을 구성하는 방법

SPRING

IntelliJ IDEA에서 Spring 패싯을 구성하는 방법

저는 Intellij 14.0을 처음 사용합니다. Netbeans를 사용하고 있었지만 제 동료가 인텔리로 전환하라고했습니다.

Intellij의 netbeans에서 실행 한 것과 동일한 프로젝트를 실행해야합니다. 제가 작업하고있는 프로젝트는 grails와 spring으로 만들어졌습니다. Intellij를 사용하여 프로젝트를 실행하려고했을 때 이것이 내가 얻은 것입니다.

그리고이 파일입니다.

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="grailsApplication" class="org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean">
        <description>Grails application factory bean</description>
        <property name="grailsDescriptor" value="/WEB-INF/grails.xml" />
        <property name="grailsResourceLoader" ref="grailsResourceLoader" />
    </bean>

    <bean id="pluginManager" class="org.codehaus.groovy.grails.plugins.GrailsPluginManagerFactoryBean">
        <description>A bean that manages Grails plugins</description>
        <property name="grailsDescriptor" value="/WEB-INF/grails.xml" />
        <property name="application" ref="grailsApplication" />
    </bean>

    <bean id="grailsConfigurator" class="org.codehaus.groovy.grails.commons.spring.GrailsRuntimeConfigurator">
        <constructor-arg>
            <ref bean="grailsApplication" />
        </constructor-arg>
        <property name="pluginManager" ref="pluginManager" />
    </bean>

    <bean id="grailsResourceLoader" class="org.codehaus.groovy.grails.commons.GrailsResourceLoaderFactoryBean" />

    <bean id="characterEncodingFilter" class="org.springframework.web.filter.CharacterEncodingFilter">
        <property name="encoding">
            <value>utf-8</value>
        </property>
    </bean>

    <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean" />
</beans>

솔직히, 나는 그것을 고치는 법을 모른다. 내 이해에 따라 일부 모듈을 찾고 있지만 수정할 수는 없습니다. 나는이 "프레임 워크 지원 추가"를 시도했습니다. 그러나 나는 목록에서 봄을 찾을 수 없었다.

이 문제를 해결하도록 도와 주시겠습니까? 감사

해결법

  1. ==============================

    1.파일 / 프로젝트 구조 / 모듈로 이동하고 녹색 플러스 아이콘을 클릭 한 다음 드롭 다운에서 봄을 선택하고 다음 대화 상자에서 모듈을 선택하십시오.

    파일 / 프로젝트 구조 / 모듈로 이동하고 녹색 플러스 아이콘을 클릭 한 다음 드롭 다운에서 봄을 선택하고 다음 대화 상자에서 모듈을 선택하십시오.

    그런 다음 오른쪽 창에서 녹색 플러스를 클릭하고 더하기를 클릭하고 Spring 구성 파일과 클래스를 선택하고 확인을 클릭하십시오.

    또한 Spring Facet에 대한 IntelliJ 도움말을 살펴보십시오.

  2. ==============================

    2.IntelliJ Ultimate 2018 - 수동 방식 :

    IntelliJ Ultimate 2018 - 수동 방식 :

    자동 방식 :

  3. from https://stackoverflow.com/questions/32861600/how-to-configure-spring-facet-in-intellij-idea by cc-by-sa and MIT license