Spring boot project imported in intellij not working

scalp007 :

I have imported spring boot project generated from spring boot initialiazr website and the project spring boot packages are not found.

Please seee the image below

Image error from intellij

Please help

scalp007 :

My problem is fixed. It was my proxy settings problem. I made right clic on IntelliJ=>Maven=>Open Settings.xml

I update settings xml file by adding

<proxies>
        <proxy>
            <id>myproxy</id>
            <active>true</active>
            <protocol>http</protocol>
            <host>myproxyhost</host>
            <port>myproxyportnumber</port>
            <username>myproxyusername</username>
            <password>myproxpass</password>
            <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
        </proxy>
 </proxies>

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=463397&siteId=1