Quantcast
Channel: JetBrains Developer Community : Thread List - IntelliJ IDEA Users
Viewing all 5661 articles
Browse latest View live

Intellij doesn’t show java doc

$
0
0

Hi,

 

Intellij (12.1.3) doesn’t show java doc (ctrl + q). See attachments.

 

I enabled "download Documentation" automatically.

 

What is missing? What is wrong?

 

Thanks in advance,

Stevo


IDEA 12.1 won't self-update

Recovery password of deployment

$
0
0

I need a help with a problem.

 

I have a old ftp account in the deployment of IntelliJ. How I recover it? I mean how I recover the password?

 

(Sorry for my strange english)

Problems with GWT facets?

$
0
0

I'm trying to add the GWT facet to a module. I've done this for other modules before without problems, but am running into strange issues with this one. IntelliJ 12.1.3 Ultimate.

 

 

I select "Project Structure", and it takes several seconds for the screen to come up. The "Path to GWT installtion directory" is blank, but selecting the drop-down gives me the same (valid) directory four times.

 

Selecting one of them gives me the warning at the bottom "gwt-user.jar in library 'gwt-servlet.jar' does not correspond to selected GWT installation". Selecting the "Fix" button doesn't seem to do anything, and once I have pressed "Fix", neither the "OK" nor "Apply" button seem to do anything.

 

If, at this point, I hit "Cancel", selecting "Project Structure" doesn't seem to ever re-open the window.

 

Any pointers or suggestions about where to proceed in resolving the problem?

Thanks

Using Bitbucket plugin to fetch tasks, do tasks get marked resolved when comitting?

$
0
0

I've installed the Bitbucket plugin from http://plugins.jetbrains.com/plugin?pluginId=6207 version 1.1.12.  After adding my Bitbucket repo to my project under Tasks > Servers in Preferences, I can now fetch the list of issues as tasks in IDEA.  I'm wondering, when creating a new changelist from these tasks and comitting changes against them, is the issue on Bitbucket supposed to get changed to resolved?  Or is there a way to force it to be marked as resolved?  After making changes for 2 issues in my repo, the issues remained opened.  So I'm just wondering if I've missed something as I've just started using this plugin.

 

Thanks.

Show all compilation errors automatically in the project when code is changed

$
0
0

In Eclipse, when I make any code changes it automatically shows all compilation errors in the workspace in a console. Is there something similar in IntelliJ? It seems in IntelliJ I have to make/build the project in order to see any compilation errors. Is there a window/tab to show all compilation errors automatically as you make changes to the code?


Python support from noob perspective: looking good so far

$
0
0

I am a rather frequent contributor of "why this?" or "this seems broken .."  So I'd like to change it up a little bit and say, after a week of using python heavily in IJ it is pleasant to do so.  The code introspection / navigation works well as well as normally expected things like syntax highlighing, code completion, etc.   Have not tried the debugger yet, but that's a "bonus" in any case.

Import Database Schema and generate entities - property-level annotations

$
0
0

Hello,

 

I am importing database schema and generating entities using Persistence View and Generate Persistence Mapping By Database Schema. Everything is working superb and I find this feature of Intellij really cool, I only have one question. After entities get generated I can see that annotations are placed at getter / setter level instead of field-level. I prefer field-level annotations. Is it possible to configure IntelliJ so it generates annotations at a field-level ????

 


Ah, and one more remark - it's a feature request - when generating entities from DB, the IntelliJ team could consider to use comments existing on tables and columns to be feed into javadoc - that's a minor thing certainly.


Maven + Custom Type/Packaging

$
0
0

Hello,

There is something  i dont undersand with the maven plugin :

I'm working on a Maven project with custom packaging and we have a maven plugin who handle it.

 

The maven plugin plexus configuration (/META-INF/plexus/components.xml) :

 

<?xml version="1.0" encoding="UTF-8"?>
<component-set>
    <components>
        <component>
            <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
            <role-hint>the-type</role-hint>
            <implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
            <configuration>
                <phases>
                    ...
                </phases>
            </configuration>
        </component>
        <component>
            <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
            <role-hint>the-type</role-hint>
            <implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
            <configuration>
                <type>the-type</type>
                <extension>jar</extension>
                <language>java</language>
                <addedToClasspath>true</addedToClasspath>
            </configuration>
        </component>
        </components>
</component-set>

 

Here the declaration of the plugin in the pom project :

 

<plugin>
    <groupId>the.group.id</groupId>
    <artifactId>the.artifact.id</artifactId>
    <extensions>true</extensions>
    <executions>
        <execution>
            <goals>
                <goal>inplace</goal>
            </goals>
        </execution>
    </executions>
</plugin>

 

And for the specifics dependencies we have :

 

<dependency>
    <groupId>groudId</groupId>
    <artifactId>artifactId</artifactId>
   <version>xxx.xx.xx</version>
   <type>the-type</type>
</dependency>

 

When i import the project, the dependency with custom type are not resolved, because intellij dont know the custom type.

So i looked intothe sources of themavenplugin, and i deduced that i had to make a plugin who extends MavenImporter for handling my custom type.

 

Something like :

 

<idea-plugin version="2">
    <name>xxxx</name>
    <id>xxx</id>
    <description>
       xxx
    </description>
    <version>x.x.x</version>
    <vendor>xxx</vendor>
    <depends>org.jetbrains.idea.maven</depends>

    <extensions defaultExtensionNs="org.jetbrains">
        <idea.maven.importer implementation="custom.MyImporter"/>
    </extensions>

</idea-plugin>

 

In the MyImporter constructor, i'm passing the groupId and the artifactId of our plugin and i override the getSupportedPackagings, getSupportedDependencyTypes, isApplicable methods (like in the Android plugin).

 

When i import the project, my plugin is correctly used but intellij fail to download the artifact because it dont use the ArtifactHandler declared in the plugin.

 

On the, MavenModelConverter or Maven2ModelConverter, convertExtension method the ArtifactHandler is alway null.

ArtifactHandler handler = artifact.getArtifactHandler(); <--- is alway null

So intellij try to download artifactId.the-type and not artifactId.jar (who doesnt exist in the repository).

 

I dont know if my approach is correct or not and whatam i doing wrong .....


ps: sorry for my poor english

Hibernate console fails with AnnotationConfiguration instance is required

$
0
0

Having problems with HQL console in IDEA 12.1.2. Our hibernate configuration file if pretty big using a mix of older XML mapping resource and newer mapping class elements. But every query reports same error about a missing AnnotationConfiguration ? Any ideas?

 

 

hql> select count(*) from TOReportItem

 

java.lang.RuntimeException: org.hibernate.MappingException: An AnnotationConfiguration instance is required to use <mapping class="com.mango.navigator.newpersistence.model.executionProfile.ExecutionParameterListValues"/>

at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1692)

at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1647)

at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1626)

at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1600)

at org.hibernate.cfg.Configuration.configure(Configuration.java:1554)

at com.intellij.hibernate.remote.impl.RemoteConfigurationImpl.configure(RemoteConfigurationImpl.java:57)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:601)

at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:322)

at sun.rmi.transport.Transport$1.run(Transport.java:177)

at sun.rmi.transport.Transport$1.run(Transport.java:174)

at java.security.AccessController.doPrivileged(Native Method)

at sun.rmi.transport.Transport.serviceCall(Transport.java:173)

at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:553)

at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:808)

at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:667)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:722)

at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:273)

at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:251)

at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:160)

at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:194)

at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:148)

at com.sun.proxy.$Proxy139.configure(Unknown Source)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:601)

at com.intellij.execution.rmi.RemoteUtil$2$1$1.compute(RemoteUtil.java:104)

at com.intellij.execution.rmi.RemoteUtil.executeWithClassLoader(RemoteUtil.java:165)

at com.intellij.execution.rmi.RemoteUtil$2$1.invoke(RemoteUtil.java:101)

at com.sun.proxy.$Proxy139.configure(Unknown Source)

at com.intellij.hibernate.engine.HibernateEngine.ensureInitialized(HibernateEngine.java:115)

at com.intellij.hibernate.engine.HibernateEngine.createQuery(HibernateEngine.java:143)

at com.intellij.jpa.engine.JpaEngineBase.executeQueryInner(JpaEngineBase.java:166)

at com.intellij.jpa.engine.JpaEngineBase.access$000(JpaEngineBase.java:44)

at com.intellij.jpa.engine.JpaEngineBase$2.run(JpaEngineBase.java:128)

at com.intellij.jpa.engine.JpaEngineBase$1.run(JpaEngineBase.java:95)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)

at java.util.concurrent.FutureTask.run(FutureTask.java:166)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:722)

 

NB: The mapping forTOReportItem is via class (XML) whileExecutionParameterListValues is a mapping class. This is Windows 7 with a local MySQL 5.1 instance.

System wide license file

$
0
0

I'm trying to set up an installation of Intellij in a Computer Lab (Ubuntu Precise). I built myself a debian packge but I haven't found a way to set a system wide license file, so that I may preload the license on every system. Otherwise each user would have to set up the license themselves.

The only method I have found, that might provide this kind of system is the Intellij license server, which needs DNS records to function automatically.

Is there a command line switch to specify a license file or a default location IntelliJ looks at when starting?

I'm aware that I could put the license file in my bash skeleton, but that is hardly a clean solution and wouldn't work for existing users.

How to update GUI Designer?

$
0
0

Heym guys,

 

Sometimes when I change my ui design in text area and then hit design tab to see how is my changes, it doesn't show mt changes.

Is there ant "Update" to force Design tab to redraw screen?

 

Any suggestion would be appreciated. Thanks

Open file editor in new window

IDEA 12.1.2 -> 12.1.3 update locked up

$
0
0

I filed an issue on this also, but the system allowed me to do it without logging in first and I can't find it. At any rate, perhaps it will be helpful here.

 

I was presented with the "Update Info" dialog when I started IDEA this morning, offering an upgrade from 12.1.2 -> 12.1.3. I clicked the "Update and Restart" button, and it's appearance changed to reflect the click. After that, nothing responds on that dialog or the IDE except the "minimize" widget. It's been in this state for about an hour.

 

I'd prefer not to kill IDEA, since my system crashed recently and when that happened IDEA's config files were corrupted, which took a good bit of time to fix (reinstall and reconfigure project).

 

According to Visual VM profiling, IDEA has two threads consuming almost all the CPU time:

java.util.concurrent.ThreadPoolExecutor$Worker.run() (70.9%)

sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run() (28.9%)

 

I'm running on Linux Mint 14 with Oracle jdk1.6.0_45.

 

Does anyone have any advice other than "kill -9"?

 

Thanks for looking!

Coffeescript + Reformat code

$
0
0

Hi.

 

Intellij (12.1.3)

 

Coffescript code:

 

test = (x)->  x += 10  x *= 10  return  
myFunc = ->  test(10)

 

After code reformating look like

 

test = (x)->  x += 10  x *= 10
return

myFunc = ->  test(10)

 

Pay attention to position of word "return"

 

It is bug?

 

Before:

before-code-reformating.png

After:

after-code-reformating.png

My code style settings for coffeescript:

coffee-code-style-01.png

coffee-code-style-02.png

coffee-code-style-03.png

coffee-code-style-04.png

 

Thanks in advance


Don't steal focus

$
0
0

Most every morning I sit down, start up my computer and start up all the programs I will be working with that day. I usually proceed to read my email first. Unfortunately, Intellij, like so many products, thinks it is the most important program ever and it must have my attention. So it steals focus and puts itself right in my face. However, I tend to have between 2-4 projects open in different windows. So it does this not only once but for each project.

 

IMO there is never a case for focus stealing. One could make a case for security software which may have a legitimate need to demand direct action. I also think such a case has never occurred in my life. I suppose any kind of alarm program could make the case. I still wouldn't agree, but I can see that some people would. However IntelliJ has no case whatsoever to steal focus. Focus should be on what I am focussed on. Just because I started the IDE does not mean I intend to work with it right now. Untill someone implements a telepathic focus algorithm programs should just start up in the background and let me continue with whatever I am doing.

Cannot resolve file *.obj

$
0
0

Hi,

 

After updating to the latest build 129.451, OBJs( 3D Wavefront file ) no longer show up in my project directory and any reference in my code is called out as an error ( see attached image for an example ).

 

This is happening in an AIR project under OS X.

 

When I build the project my 3D models show up properly, so this isn't a case of a missing file or wrong path -- other files in the same directory are seen by IDEA.

 

This is more of an annoyance right now, since it doesn't hinder my development, but as noted above, prior to the udpate this was not an issue.

 

General info:

OS X 10.7.5

IDEA 12.1.3 - up to date.

JDK 1.6.0_45

 

Thanks for any help.

Why is darcula much lighter on a mac compared to ubuntu?

$
0
0

Why is darcula so much lighter on the mac version of Intellij compared to ubuntu.

 

I really like the theme and use it all the time, though on my mac it felt a bit too light, the backgrounds feel washed out.  When I installed ubuntu on a vm on my mac and ran intellij its much darker and richer and I really prefer it.

 

Are the theme values different on the ubuntu and mac versions of intellij or is this somethig else?

Different IDEA behaviour when creating new project?

$
0
0

(in IDEA 12.1.3) I notice that when creating a File > New Project > Java Module, then there is different behaviour if I type the module name in first, followed by the project name, as opposed to when I do the opposite.

 

In the first case the module file path in .idea/modules.xml becomes

 

<module fileurl="file://$PROJECT_DIR$/moduleFirst.iml" filepath="$PROJECT_DIR$/moduleFirst.iml" />

 

The latter case becomes

 

  <module fileurl="file://$PROJECT_DIR$/ModuleLast/ModuleLast.iml" filepath="$PROJECT_DIR$/ModuleLast/ModuleLast.iml" />

 

Now the project structure of the last case (Project First, Module last) makes most sense (see screenshot), but it appears a bit unfortunate that the .idea file isn't immediately visible in IDEA's project browser (see screenshot), like it is in the first case where it's path gets set to the same as that of the module.

 

Is this a bug?  Am I meant to manually add the .idea folder to the project's files?

information ambien online pharmacy

$
0
0

web drug classification sleep

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Taking ambien cr with trazodone side affects ambien cr. Substance abuse ambien ambien medicamento salud mental. Chlor trimeton drug interactions ambien cr cymbalta can u sniff ambien. Ambien and plms can ambien with wellbutrin cause depression. Lorazepam vs ambien recommended dosage of ambien. Clonidine and ambien taking mixing ambien xanax. Dangers of ambien cr ambien cr free trial coupon. Mix ambien and lorazapram generic ambien vs name brand. Ambien cr dimensions mm problems with ambien sleep medication. Withdrawal symptons from xanax and ambien nrop ambien prices good find. Purchase ambien tablets without prescription buy ambien online next day delivery. Information on the medication ambien albuterol ambien interactions. Abnormal eating ambien remeron sleep ambien. Generic of ambien ultracet ambien interaction. Mix ambien and lorazepam ambien pill photo. buy ambien online fast sleep aids lunesta ambien restoril withdrawal symptons from xanax and ambien is ambien a narcotic with the use of ambien ambien problems side effects ambien causing gastric ulcers cheapest generic ambien Ambien Buy in Uk >>> Shipped By Cash On Delivery ambien buy on line. Ambien cr abuse ambien codine combined. Is ambien bad for you these does ambien cause sexual side effects. Propoxyphene ambien lunesta lunesta verses ambien. Online pharmacy fedex cod ambien sr avapro with ambien women. Wellbutrin and ambien ambien alcohol wellbutrin. Ambien cr and acetomeniphen does ambien cr cause impotence. Ambien and amnesia ambien cr 625mg. Buy fioricet ambien carisoprodol diazepam fiorice overdose of ambien kill you. Ambien negative reactions ambien cr lunesta cod online orders. Can you mix ambien and benadryl nortriptyline or ambien. Buy overnight shipping ambien online consultation ambien cr and weight gain. 20mg ambien not working ambien vegetative state buy ambien online cheap ambien with wellbutrin cause depression ambien overnight fedex priority delivery saturday ambien overnight prescription buy ambien otc file ambien lawsuit over dose of ambien cod ambien oklahoma Drinking alcohol and ambien switching to ambien cr from seroquel. Ambien cr pregnancy safe ambien dosage side effects. Long term use ambien ambien com carisoprodol. Ambien without presciption Purchase ambien paypal without rx. Can you take ambien with zocor news ambien sleep. Ambien effects on cats ambien versus ambien cr. Can you over dose on ambien ambien 2 5 mg dose. Ambien alcohol paroxetine restoril versus ambien. Buy generic ambien on sale ambien withdrawal instructions. Sde effects of ambien ambien with narcotics. Individual health plan ambien diet pill can you mix ambien and benadryl. Buy ambien r generic for lunesta or ambien. dosage ambien cr ambien 10mg facts ambien prices reduction ambien is wonderful buy percocet oxycodone ms contin ambien ambien blurry vision ambien cr dosage ambien cr sucks wellbutrin and ambien Torrent ambien zolpidem buy ambien on line physician. Ambien cr and kidneys ambien cr medication melatonin. Ambien and breast feeding ritalin mixed with ambien. How to make ambien ambien sexual side effects hard erections. Ambien cr patent expiration prozac ambiencr sleep. Ambien for insomina ambien in pregnant women. Lyria ambien side effects buy cheap ambien. Buy ambien online without an rx zyprexa ambien drug interaction. Bipolar and ambien ambien as sedative hypnotic.
Viewing all 5661 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>