active questions tagged annotations - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:26:54Z http://stackoverflow.com/feeds/tag/annotations http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters 3 How can I place validating constraints on my method input parameters? rrc7cz 2009-11-27T14:28:40Z 2009-11-27T17:13:16Z <p>Here is the typical way of accomplishing this goal:</p> <pre><code>public void myContractualMethod(final String x, final Set&lt;String&gt; y) { if ((x == null) || (x.isEmpty())) { throw new IllegalArgumentException("x cannot be null or empty"); } if (y == null) { throw new IllegalArgumentException("y cannot be null"); } // Now I can actually start writing purposeful // code to accomplish the goal of this method </code></pre> <p>I think this solution is ugly. Your methods quickly fill up with boilerplate code checking the valid input parameters contract, obscuring the heart of the method.</p> <p>Here's what I'd like to have:</p> <pre><code>public void myContractualMethod(@NotNull @NotEmpty final String x, @NotNull final Set&lt;String&gt; y) { // Now I have a clean method body that isn't obscured by // contract checking </code></pre> <p>If those annotations look like JSR 303/Bean Validation Spec, it's because I borred them from there. Unfortunitely they don't seem to work this way; they are intended for annotating instance variables, then running the object through a validator.</p> <p>Which of the <a href="http://en.wikipedia.org/wiki/Design%5Fby%5Fcontract#Languages%5Fwith%5Fthird-party%5Fsupport" rel="nofollow">many Java design-by-contract frameworks</a> provide the closest functionality to my "like to have" example?</p> http://stackoverflow.com/questions/1807392/mkannotationview 0 MKAnnotationView Marco 2009-11-27T08:19:50Z 2009-11-27T08:19:50Z <p>Hello. my question is, to set more Annotation Pins on a map?</p> <pre><code>enter code - (NSArray *) addressLocation { </code></pre> <p>kunden = [NSArray arrayWithObjects:@"Kammlach", @"Mindelheim",@"Ettringen", nil]; NSString *aktuellerKunde; int i;</p> <p>locations = [NSMutableArray arrayWithObjects:@"",nil]; for (i=0; i &lt; [kunden count]; i++) { CLLocationCoordinate2D* location = malloc(sizeof(CLLocationCoordinate2D)); aktuellerKunde=[kunden objectAtIndex:i]; NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&amp;output=csv", [aktuellerKunde stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString]]; NSArray *listItems = [locationString componentsSeparatedByString:@","];</p> <p>double latitude = 0.0; double longitude = 0.0;</p> <p>if([listItems count] >= 4 &amp;&amp; [[listItems objectAtIndex:0] isEqualToString:@"200"]) { latitude = [[listItems objectAtIndex:2] doubleValue]; longitude = [[listItems objectAtIndex:3] doubleValue]; } else { //Show error }</p> <p>location -> latitude = latitude; location -> longitude = longitude;</p> <p>[locations addObject:[NSData dataWithBytes:(void *)location length:sizeof(CLLocationCoordinate2D)]]; } return locations; }</p> <p>so this is my code with 3 points i want to set on the map. and what can i do, in the follow method to get this points out of the array into the map??</p> http://stackoverflow.com/questions/1805897/iphone-annotation-image-disappears-on-touch 0 iPhone - Annotation image disappears on touch dc 2009-11-26T22:15:25Z 2009-11-26T22:38:11Z <p>I am annotating my map and setting an image just fine, but when I tap the annotation on the MapView, the image goes from my custom image back to the red pin. Why is this?</p> <pre><code>- (MKAnnotationView *)mapView:(MKMapView *)newMapView viewForAnnotation:(id )newAnnotation { MKPinAnnotationView *a = [ [ MKPinAnnotationView alloc ] initWithAnnotation:newAnnotation reuseIdentifier:@"currentloc"]; if ( a == nil ) a = [ [ MKAnnotationView alloc ] initWithAnnotation:newAnnotation reuseIdentifier: @"currentloc" ]; a.image = [ UIImage imageNamed:@"anno.png" ]; a.canShowCallout = YES; a.rightCalloutAccessoryView = [ UIButton buttonWithType:UIButtonTypeDetailDisclosure ]; UIImageView *imgView = [ [ UIImageView alloc ] initWithImage:[ UIImage imageNamed:@"bus_stop_30x30.png" ] ]; a.leftCalloutAccessoryView = imgView; return a; }</code></pre> <p>My code looks identical to some sample code that does not produce this problem.</p> http://stackoverflow.com/questions/1805200/retrieve-java-annotation-attribute 0 Retrieve JAVA Annotation Attribute Diego Dias 2009-11-26T19:00:56Z 2009-11-26T19:54:33Z <p>How can I retrieve the value of an annotation on the annotated method??</p> <p>I have:</p> <pre><code>@myAnnotation(attribute1 = value1, attibute2 = value2) public void myMethod() { //I want to get value1 here } </code></pre> http://stackoverflow.com/questions/1779484/hibernate-3-0-elementcollection-class-missing 1 Hibernate 3.0 + ElementCollection class missing. Tom 2009-11-22T18:18:04Z 2009-11-26T10:30:44Z <p>Hi,</p> <p>I created a small desktop project using Hibernate, to understand how enterprise patterns are applied in there.</p> <p>I'm using annotations, and wrote a class to wrap my session factory</p> <pre><code>public class Hibernation { private static final SessionFactory sessionFactory; static{ try{ //sesionFactory = new org.hibernate.cfg.Configuration().configure().buildSessionFactory(); sessionFactory = new AnnotationConfiguration().configure().buildSessionFactory(); } catch(Throwable e){ throw new ExceptionInInitializerError(e); } } public static Session getSession(){ return sessionFactory.openSession(); } } </code></pre> <p>However, whenever i try to run it, I get this error: </p> <p>Caused by: java.lang.ClassNotFoundException: javax.persistence.ElementCollection</p> <p>The jars in my classpath do not seem to have that class inside them</p> <pre><code>hibernate3.jar jpa.jar log4j-1.2.15.jar persistence-api-1.0.jar slf4j-log4j12-1.0.1.jar </code></pre> <p>I've looked around for that class, but I can't find where to download it from. Any idea what jar file i'm missing? I looked inside <a href="http://www.java2s.com/Code/Jar/GHI/Downloadjavaeejar.htm" rel="nofollow">javaee.jar</a>, where there are many javax.persistence.*** clases, but its not there either.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1136549/can-annotations-be-used-for-code-injection 4 Can annotations be used for code injection? Matthys Strydom 2009-07-16T09:52:46Z 2009-11-26T10:01:33Z <p>Hi all,</p> <p>I realise that this might be a question that has been asked and answered, but please bear with me.</p> <p>I want to know if it is possible to use annotations to inject code into your classes compile time. The classic example is to generate a getter and setter for the members of your object. This is not exactly what I need it for, but it serves to illustrate the basic idea.</p> <p>Now on the internet the basic answer I get is no, but this guy did it:</p> <p><a href="http://www.hanhuy.com/pfn/java%5Fproperty%5Fannotation" rel="nofollow">link text</a></p> <p>Does anyone know how he does what he does (and if he actually does what he says he does)?</p> <p>The main thing is that he does not use an annotation processor to generate a new java file to compile. This technique I am aware of and will not work for our purpose.</p> <p>Thanks</p> http://stackoverflow.com/questions/1801229/aspectj-getting-annotated-fields-for-use-with-advice 0 AspectJ, getting annotated fields for use with advice Carl 2009-11-26T02:24:18Z 2009-11-26T02:24:18Z <p>I want to use all the fields marked with an annotation in a class for use with some generic advice. What are some ways to go about doing that? This is a follow-up to my previous <a href="http://stackoverflow.com/questions/1791529/aspectj-using-annotations-to-implement-hashcode">question</a>.</p> <p>Some of what I've read indicates reflection would work - though reflecting seems wasteful, since I plan to use the advice frequently. I could also provide the annotations values based on field names, and then maintain a map from field names to individual field hashcodes which gets used with the generic method and updates whenever the fields mutate; this adds weight to both the code and actual running, though.</p> http://stackoverflow.com/questions/1798401/annotations-of-annotations-in-java-5-6 1 Annotations of Annotations in Java 5/6 Ashish Tonse 2009-11-25T17:03:29Z 2009-11-25T17:54:20Z <p>I am setting up Hibernate Caching and want to cache certain entities in different regions. For example, some entities can be "stale" for up to 5 minutes, some for an hour, and some (like lookups) won't change for weeks. To facilitate easy config of regions in my code, I'm trying the following:</p> <p>I created an annotation named <code>@LookupCache</code> (and <code>@DailyCache</code> etc)</p> <pre><code>@Cache(region = "lookups", usage = CacheConcurrencyStrategy.READ_ONLY) @Retention(RetentionPolicy.RUNTIME) public @interface LookupCache {} </code></pre> <p>And I am adding that annotation to my Hibernate/JPA entity:</p> <pre><code>@LookupCache public class Course {} </code></pre> <p>This way, I can easily change the region or attributes of the <code>@LookupCache</code> without having to change the annotation params of every class.</p> <p>However, the cache loader doesn't pick up this inherited <code>@Cache</code> notation. How do I get the <code>@LookupCache</code> annotation to inherit the annotations that are applied to it?</p> http://stackoverflow.com/questions/1791310/can-i-write-annotation-in-groovy 0 Can I write annotation in Groovy? Dan 2009-11-24T16:43:08Z 2009-11-25T14:08:44Z <p>I know I can annotate my classes in Groovy with annotations, but can I write the annotation itself in Groovy (as opposed to just using annotation written in Java)? If so, from what version?</p> http://stackoverflow.com/questions/977714/accessing-httpservletrequest-from-aop-advice-in-spring-2-5-with-annotations 1 Accessing HttpServletRequest from AOP advice in Spring 2.5 with annotations Tomas Salfischberger 2009-06-10T19:35:25Z 2009-11-25T10:23:13Z <p>Hi All,</p> <p>I have tried to find the answer to this question on both the Spring forum and by searching StackOverflow. I have found a lot of pages describing horrible architectures and asking for about the same thing as I do, but my intended usage is different so please bear with me :-)</p> <p>I have a Spring 2.5 project using annotation based form controllers basically like this:</p> <pre><code>@RequestMapping("/edit/someObject") public String handleSubmit(HttpServletRequest request, HttpServletResponse response, SomeObject someObject, BindingResult result) { // Some check here if(result.hasErrors()) { return "form"; } else { SomeObjectService.update(someObject); return "redirect:/view/someObject"; } } </code></pre> <p>In this I check for some http property in the HttpServletRequest and use the HttpServletResponse to send a redirect if this property has a certain value. This check is done is a lot (but not all) of the form controllers in this application. What I would like to do is create a @CheckedSubmit annotation handled by some AOP advice to do this check and then drop the HttpServletRequest and HttpServletResponse parameters from the controller.</p> <p>My problem is that I have no idea how to access the current HttpServletRequest and HttpServletResponse from this AOP advice without using these two as (unused) parameters to the annotated method, which is what I tried to avoid in the first place.</p> <p>Summary: How to access the HttpServletRequest/Response from AOP advice on an @RequestMapping annotated method?</p> http://stackoverflow.com/questions/1791228/abstract-enum-a-annotation-attribute-type 0 Abstract enum a annotation attribute type Alan Mc Kernan 2009-11-24T16:30:35Z 2009-11-24T16:41:02Z <p>Hi,</p> <p>I have an interface which multiple enums are implementing, i.e</p> <pre><code>public interface MinorCodes { public abstract int code(); public abstract String description(); } public enum IdentityMinorCodes implements MinorCodes { IDENTITY_UPLOAD_PICTURE_CODE(1, "Error while trying to upload a picture."), } </code></pre> <p>Now I want to have a custom annotation which has a value type of one of these concrete enum values, i.e</p> <pre><code>public @interface PokenService { MinorCodes[] exceptions(); } </code></pre> <p>But of course I cannot return an interface here.</p> <p>Does anyone know any solution or workaround to this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1780341/do-i-need-class-elements-in-persistence-xml 1 Do I need <class> elements in persistence.xml? Michał Mech 2009-11-22T22:57:42Z 2009-11-22T23:53:06Z <p>I have very simple persistance.xml file: http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"></p> <pre><code>&lt;persistence-unit name="eventractor" transaction-type="RESOURCE_LOCAL"&gt; &lt;class&gt;pl.michalmech.eventractor.domain.User&lt;/class&gt; &lt;class&gt;pl.michalmech.eventractor.domain.Address&lt;/class&gt; &lt;class&gt;pl.michalmech.eventractor.domain.City&lt;/class&gt; &lt;class&gt;pl.michalmech.eventractor.domain.Country&lt;/class&gt; &lt;properties&gt; &lt;property name="hibernate.hbm2ddl.auto" value="validate" /&gt; &lt;property name="hibernate.show_sql" value="true" /&gt; &lt;/properties&gt; &lt;/persistence-unit&gt; </code></pre> <p> and it works. But when I remove <code>&lt;class&gt;</code> elements application doesn't see entities (all classes are annotated with <code>@Entity</code>).</p> <p>Is there any automatic mechanism to scan for <code>@Entity</code> classes?</p> http://stackoverflow.com/questions/1770075/how-to-user-hibernate-valid-constraint-with-spring-3-x 0 How to user Hibernate @Valid constraint with Spring 3.x? Burak Dede 2009-11-20T12:08:26Z 2009-11-20T12:08:26Z <p>I am working on simple form to validate fields like this one.</p> <pre><code>public class Contact { @NotNull @Max(64) @Size(max=64) private String name; @NotNull @Email @Size(min=4) private String mail; @NotNull @Size(max=300) private String text; } </code></pre> <p>I provide getter and setters hibernate dependencies on my classpath also.But i still do not get the how to validate simple form there is actually not so much documentation for spring hibernate combination.</p> <pre><code>@RequestMapping(value = "/contact", method = RequestMethod.POST) public String add(@Valid Contact contact, BindingResult result) { .... } </code></pre> <p>Could you explain it or give some tutorial , except original spring 3.x documentation</p> http://stackoverflow.com/questions/1762870/how-to-restart-transactions-on-deadlock-lock-timeout-in-spring 1 How to restart transactions on deadlock/lock-timeout in Spring? Asaf Mesika 2009-11-19T12:11:38Z 2009-11-20T05:29:10Z <p>Hi,</p> <p>What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: declarative transactions) ?</p> <p>Thanks,</p> <p>Asaf</p> http://stackoverflow.com/questions/1763863/delete-hibernate-entity-without-attempting-to-delete-association-table-view-e 0 delete hibernate entity without (attempting to) delete association table (view) entry framer8 2009-11-19T14:57:28Z 2009-11-19T16:06:18Z <p>Entity A and B have a many to many relationship using link table AtoB.</p> <p>If Entity A is deleted, the related links are deleted by hibernate. So far so good.</p> <p>My problem is that my link table is a view hiding a much more complicated relationship and works perfectly in this situation except when hiberate tries to delete the link rows from the view, causing the database to complain.</p> <pre><code>@Entity A... @ManyToMany(fetch = FetchType.LAZY) @JoinTable(name = "AtoB", joinColumns = @JoinColumn(name = "A_ID"), inverseJoinColumns = @JoinColumn(name = "B_ID")) public Set&lt;A&gt; getASet() { return ASet; } </code></pre> <p>Is there a way to get hibernate to not delete the link rows? I haven't found any cascade options or the ability to use updateable=false etc on an association.</p> <p>Cheers.</p> http://stackoverflow.com/questions/1706059/conventions-for-annotating-appinfo-in-xml-schema 1 Conventions for annotating appinfo in xml-schema? 13ren 2009-11-10T06:52:00Z 2009-11-19T14:11:42Z <p>I believe the three below are syntactically correct; but which are permitted according to conventions (especially in the enterprise)?</p> <p><hr></p> <p>The first one below is used in most examples I've seen (e.g. JAXB), but it's verbose:</p> <pre><code>&lt;xs:annotation&gt; &lt;xs:appinfo&gt; &lt;myinfo&gt;don't panic&lt;/myinfo&gt; &lt;/xs:appinfo&gt; &lt;/xs:annotation&gt; </code></pre> <p>This second one below is allowed because any attributes are permitted on <code>&lt;appinfo&gt;</code> (that aren't in xml schema's own namespace). It's shorter, and seems reasonable - but is it conventional?</p> <pre><code>&lt;xs:annotation&gt; &lt;xs:appinfo myinfo="don't panic"/&gt; &lt;/xs:annotation&gt; </code></pre> <p>This last one below is my favourite, because it's so short and doesn't clutter up the schema. I'm sure it's legal, because like <code>&lt;appinfo&gt;</code>, any attributes are permitted on an <code>&lt;annotation&gt;</code> (again, provided non-xml schema namespaced). But it encodes application info without using an <code>&lt;appinfo&gt;</code>, so I'm afraid it would be frowned upon. Would it be?</p> <pre><code>&lt;xs:annotation myinfo="don't panic"/&gt; </code></pre> <p>Many thanks for your comments!</p> http://stackoverflow.com/questions/1722820/get-info-on-a-mapview-selected-annotation 0 Get info on a mapview selected annotation rson 2009-11-12T15:02:08Z 2009-11-19T11:44:23Z <p>I have annotations on a mapview and a callout with a button on each. What I need to do is grab properties from this callout, ie. the title, but logging this line:</p> <pre><code>NSLog(@"%@", mapView.selectedAnnotations); </code></pre> <p>returns <code>&lt;AddressAnnotation: 0x1bdc60&gt;</code> which obviously gives me no useful info...</p> <p>My question is, how can I access the properties of a selected annotation callout?</p> http://stackoverflow.com/questions/314578/need-an-example-of-a-primary-key-onetoone-mapping-in-hibernate 1 Need an example of a primary-key @OneToOne mapping in Hibernate Alex Marshall 2008-11-24T16:01:14Z 2009-11-18T08:56:55Z <p>Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in Hibernate ? I've tried numerous combinations, and so far the best thing I've gotten is this :</p> <pre><code>@Entity @Table(name = "paper_cheque_stop_metadata") @org.hibernate.annotations.Entity(mutable = false) public class PaperChequeStopMetadata implements Serializable, SecurityEventAware { private static final long serialVersionUID = 1L; @Id @JoinColumn(name = "paper_cheque_id") @OneToOne(cascade = {}, fetch = FetchType.EAGER, optional = false, targetEntity = PaperCheque.class) private PaperCheque paperCheque; } </code></pre> <p>Whenever Hibernate tries to automatically generate the schema for the above mapping, it tries to create the primary key as a blob, instead of as a long, which is the id type of PaperCheque. Can somebody please help me ? If I can't get an exact solution, something close would do, but I'd appreciate any response.</p> http://stackoverflow.com/questions/1748146/mapping-db-imported-countries-to-address-entity-with-jpa 1 Mapping db-imported countries to address entity with JPA tommybrett1977 2009-11-17T11:11:35Z 2009-11-17T20:19:36Z <p>I ran some DDL script to setup a complete country table in my database. The country table's primary key column contains the corresponding ISO code for every country. </p> <p>In my JPA project I have a User entity having an embedded Address entity and this Address entity has a reference to a Country. The relationship between User and Address seems to be no problem to me, but the relationship between Address and Country. I tried to map it as a ManyToOne relationship, since many addresses can share a country. </p> <p>Problem is: I annotated the iso member variable of the Country class with Id -> Now, JPA/Hibernate complains about not having set the id of the country manually. But in this case, the id is already given and set, since I imported the data once and the ISO code is unique and by db schema means declared as primary key. In this special case, there is no need for updates or inserts in the country table - the information should be read only! </p> <p>Any idea what to do, so I can use my countries table without altering?</p> http://stackoverflow.com/questions/1733043/using-annotations-to-implement-a-static-join-in-hibernate 2 Using annotations to implement a static join in hibernate Jay 2009-11-14T02:39:16Z 2009-11-17T00:29:12Z <p>Hi, I'm relatively new to hibernate and was wondering if someone could help me out. While I have no issues implementing a normal join on multiple columns in hibernate using the <pre>@JoinColumns</pre> tag, I'm stumped when trying to implement the following query in annotations:</p> <pre> SELECT A.* FROM TABLEA A LEFT OUTER JOIN TABLEB B ON A.UID = B.ID AND B.NAME = 'JAY' </pre> <p>As you can see the join is also based on a value ('JAY') which is not a column. I don't know how to proceed with such a mapping in annotations.</p> <p>Can someone help?</p> <p>Thanks, Jay</p> http://stackoverflow.com/questions/796347/map-a-list-of-strings-with-jpa-hibernate-annotations 1 Map a list of strings with JPA/Hibernate annotations danb 2009-04-28T05:33:03Z 2009-11-16T19:06:48Z <p>I want to do something like this:</p> <pre><code> @Entity public class Bar { @Id @GeneratedValue long id; List&lt;String&gt; Foos } </code></pre> <p>and have the Foos persist in a table like this:</p> <pre><code>foo_bars ( bar_id int, foo varchar(64) ); </code></pre> <p>UPDATE:</p> <p>I know how to map other entities, but it's overkill in many cases. It looks like what I'm suggesting isn't possible without creating yet another entity or ending up with everything in some blob column.</p> http://stackoverflow.com/questions/1702471/hibernate-discriminatorvalue-does-not-apply-to-associations 0 hibernate @DiscriminatorValue does not apply to associations kan 2009-11-09T17:23:22Z 2009-11-10T17:12:59Z <p>I have the following inheritance hierarchy.</p> <pre><code>@Entity @Table(FRUIT) @Inheritance(strategy=InheritanceType.SINGLE_TABLE) @DiscriminatorColum(name="FRUIT_TYPE",discriminatorType=STRING) public class Fruit { .. @Id private FruitId id; ... } @DiscriminatorValue("APPLE") public class Apple extends Fruit { ... @ManyToOne private FruitBowl bowl; //this association is only present in the subclass ... } class FruitBowl .. { ... @OneToMany(fetch = FetchType.LAZY, mappedBy = "bowl") @IndexColumn(name="POSITION",base = 1) List&lt;Apple&gt; apples; ... </code></pre> <p>When I do a <code>session.load(Apple.class,...)</code>, it adds <code>FRUIT_TYPE = 'APPLE'</code> to the select query. But if I do a select on FruitBowl(which has a 1:m relationship with Apple), the select query on the Apple does not contain <code>FRUIT_TYPE = 'APPLE'</code>. Why does this happen? How do I rectify the problem?</p> <p>Query --Query for FruitBowl </p> <pre><code>select fruitbowl0_.BOWL_ID as BOWL1_1_0_ from FRUITBOWL fruitbowl0_ where fruitbowl0_.BOWL_ID=? </code></pre> <p>--Query for Fruit to retrieve Apples (records with fruit_type ='A') --but it does not include that condition </p> <pre><code>select apples0_.ENTITY_ID as ENTITY3_1_, apples0_.POS as POS1_, apples0_.POS as POS0_0_, apples0_.ENTITY_ID as ENTITY3_0_0_, apples0_.COLOR as COLOR0_0_ from FRUIT apples0_ where apples0_.ENTITY_ID=? </code></pre> http://stackoverflow.com/questions/1706751/retain-annotations-on-cglib-proxies 1 Retain annotations on CGLIB proxies? Nirav 2009-11-10T09:49:51Z 2009-11-10T09:52:52Z <p>Hi !</p> <p>Am trying to create an object using an AOP framework which uses CGLIB to create proxy objects. Strangely enough, the "enhanced" proxy object is devoid of ANY annotations the previous class had!</p> <p>Can anyone tell me how can I make CGLIB retain the annotations on the proxies it creates?</p> <p>Cheers! Nirav</p> http://stackoverflow.com/questions/1694616/how-to-avoid-mkmapkit-related-crashes-on-the-iphone 0 How to avoid MKMapKit Related Crashes on the iPhone TheAggie 2009-11-07T22:10:12Z 2009-11-08T00:13:24Z <p>So, for the past few days I have been struggling to understand how to implement a simple <strong>MKMapView</strong> with some custom annotations without crashing my application in the process. Unfortunately I have been unable to determine what I'm doing wrong and am becoming increasingly frustrated in the process.</p> <p>What I'm trying to accomplish should be relatively simple. I'm trying to create a new object w/ a location associated with it. To do this I have a view controller for creating the object. I want the user to be able to cancel out of the view controller at any time if they so desire, but in order to save the object they must first provide a location and a name for it. The name will be taken via a <strong>UITextField</strong> while the location will be obtained via the MKMapView. </p> <p>So here is what happens... Whenever I open up the New Object View Controller, it updates the location and whatnot. If I try to click cancel, it crashes. In an attempt to simplify the problem I removed the code for updating the location and moving the annotation pin, so you won't see that below.</p> <p>Here is some of the code I'm using in addition to an example of the stack trace I encounter after the crash. Any help you can offer would be greatly appreciated. Thanks!</p> <p>Before I show you my code, here is the stack trace I end up with:</p> <p><strong>Stack Trace After Crash</strong></p> <pre><code>#1 0x30c4c8b8 in -[UIImageView stopAnimating] #2 0x30c4c810 in -[UIImageView dealloc] #3 0x32d86640 in -[NSObject release] #4 0x32d198ac in -[MKAnnotationView dealloc] #5 0x32d86640 in -[NSObject release] #6 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #7 0x30c4ca24 in -[UIView dealloc] #8 0x32ce881c in -[MKOverlayView dealloc] #9 0x32d86640 in -[NSObject release] #10 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #11 0x30c4ca24 in -[UIView dealloc] #12 0x30cbb878 in -[UIScrollView dealloc] #13 0x32d179c4 in -[MKScrollView dealloc] #14 0x32d86640 in -[NSObject release] #15 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #16 0x30cbb4a8 in -[UIScrollView removeFromSuperview] #17 0x30c4ca24 in -[UIView dealloc] #18 0x32d86640 in -[NSObject release] #19 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #20 0x30c4ca24 in -[UIView dealloc] #21 0x32cc579c in -[MKMapView dealloc] #22 0x32d86640 in -[NSObject release] #23 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #24 0x30c4ca24 in -[UIView dealloc] #25 0x32d86640 in -[NSObject release] #26 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #27 0x30c4ca24 in -[UIView dealloc] #28 0x32d86640 in -[NSObject release] #29 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #30 0x30c4ca24 in -[UIView dealloc] #31 0x32d86640 in -[NSObject release] #32 0x30bfab34 in -[UIView(Hierarchy) removeFromSuperview] #33 0x30c4ca24 in -[UIView dealloc] #34 0x32d86640 in -[NSObject release] #35 0x33f70996 in NSPopAutoreleasePool #36 0x33e99104 in run_animation_callbacks #37 0x33e98e6c in CA::timer_callback #38 0x32da44c2 in CFRunLoopRunSpecific #39 0x32da3c1e in CFRunLoopRunInMode #40 0x31bb9374 in GSEventRunModal #41 0x30bf3c30 in -[UIApplication _run] #42 0x30bf2230 in UIApplicationMain #43 0x00002450 in main at main.m:14 </code></pre> <p><strong>CustomAnnotation.h</strong>:</p> <pre><code>@interface CustomAnnotation : NSObject &lt;MKAnnotation, MKReverseGeocoderDelegate&gt; { @private MKReverseGeocoder* _reverseGeocoder; MKPlacemark* _placemark; @public CLLocationCoordinate2D _coordinate; NSString* _title; } //Note: Property for CLLocationCoordinate2D coordinate is declared in MKAnnotation @property (nonatomic, retain) NSString* title; @property (nonatomic, retain) MKPlacemark* placemark; -(id) initWithCoordinate:(CLLocationCoordinate2D)coordinate title:(NSString*)title; -(void) setCoordinate:(CLLocationCoordinate2D)coordinate; @end </code></pre> <p><strong>CustomAnnotation.m</strong></p> <pre><code>@implementation CustomAnnotation @synthesize coordinate = _coordinate; // property declared in MKAnnotation.h @synthesize title = _title; @synthesize placemark = _placemark; -(id) initWithCoordinate:(CLLocationCoordinate2D)coordinate title:(NSString*)title { if(self = [super init]) { _title = [title retain]; [self setCoordinate:coordinate]; _placemark = nil; } return self; } #pragma mark - #pragma mark MKAnnotationView Notification - (void)notifyCalloutInfo:(MKPlacemark *)newPlacemark { [self willChangeValueForKey:@"subtitle"]; // Workaround for SDK 3.0, otherwise callout info won't update. self.placemark = newPlacemark; [self didChangeValueForKey:@"subtitle"]; // Workaround for SDK 3.0, otherwise callout info won't update. [[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:@"MKAnnotationCalloutInfoDidChangeNotification" object:self]]; } #pragma mark #pragma mark - #pragma mark Reverse Geocoder Reset Procedure - (void)resetReverseGeocoder { if(_reverseGeocoder != nil) { //If the reverse geocoder already exists, check to make sure it isn't querying. Cancel query if it is. if([_reverseGeocoder isQuerying]) { [_reverseGeocoder cancel]; } //Before releasing the reverse geocoder, set it's delegate to nil just to be safe [_reverseGeocoder setDelegate:nil]; //Release the current reverse geocoder [_reverseGeocoder release]; _reverseGeocoder = nil; } } #pragma mark #pragma mark - #pragma mark Set Coordinate Procedure - (void)setCoordinate:(CLLocationCoordinate2D)coordinate { _coordinate = coordinate; //We only want to be reverse geocoding one location at a time, so make sure we've reset the reverse geocoder before starting [self resetReverseGeocoder]; //Create a new reverse geocoder to find the location for the given coordinate, and start the query _reverseGeocoder = [[MKReverseGeocoder alloc] initWithCoordinate:_coordinate]; [_reverseGeocoder setDelegate:self]; [_reverseGeocoder start]; } #pragma mark #pragma mark - #pragma mark MKAnnotation Delegate Procedure Implementations - (NSString *)subtitle { NSString* subtitle = nil; if (_placemark) { subtitle = [NSString stringWithString:[[_placemark.addressDictionary objectForKey:@"FormattedAddressLines"] objectAtIndex:1]]; } else { subtitle = [NSString stringWithFormat:@"%lf, %lf", _coordinate.latitude, _coordinate.longitude]; } return subtitle; } #pragma mark - #pragma mark MKReverseGeocoderDelegate methods - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)newPlacemark { if(geocoder != _reverseGeocoder) { NSLog(@"WARNING:::: MORE THAN ONE REVERSE GEOCODER!!!"); NSLog(@"_reverseGeocoder = %@",[_reverseGeocoder description]); NSLog(@"geocoder = %@",[geocoder description]); } [self notifyCalloutInfo:newPlacemark]; [self resetReverseGeocoder]; } - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error { if(geocoder != _reverseGeocoder) { NSLog(@"WARNING:::: MORE THAN ONE REVERSE GEOCODER!!!"); NSLog(@"_reverseGeocoder = %@",[_reverseGeocoder description]); NSLog(@"geocoder = %@",[geocoder description]); } [self notifyCalloutInfo:nil]; [self resetReverseGeocoder]; } #pragma mark - #pragma mark Memory Management - (void)dealloc { [self resetReverseGeocoder]; [_title release], _title = nil; [_placemark release], _placemark = nil; [super dealloc]; } @end </code></pre> <p>Second, I have created a Custom Annotation View</p> <p><strong>CustomAnnotationView.h</strong></p> <pre><code>@interface CustomAnnotationView : MKAnnotationView { } @end </code></pre> <p><strong>CustomAnnotationView.m</strong></p> <pre><code>@implementation CustomAnnotationView - (id)initWithAnnotation:(id &lt;MKAnnotation&gt;)annotation reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]; UIGraphicsBeginImageContext(CGSizeMake(30,30)); //Note: [UIImage drawInRect:radius:contentMode:] is a Three20 Procedure [[UIImage imageNamed:@"annoationIcon.png"] drawInRect:CGRectMake(0,0,30,30) radius:6.0f contentMode:UIViewContentModeScaleAspectFill]; UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext(); //pop the context to get back to the default UIGraphicsEndImageContext(); UIImageView *leftIconView = [[UIImageView alloc] initWithImage:iconImage]; self.leftCalloutAccessoryView = leftIconView; [leftIconView release]; [iconImage release]; return self; } @end </code></pre> <p>And, Last But Not Least, the relevant parts of My New Object View Controller:</p> <p><strong>NewObjectViewController.m</strong></p> <pre><code>@implementation NewObjectViewController @synthesize managedObjectContext; @synthesize object; @synthesize objectMapView; #pragma mark #pragma mark - #pragma mark Initialization -(id) initWithManagedObjectContext:(NSManagedObjectContext*)context{ self = [super init]; if (self != nil) { [self setManagedObjectContext:context]; Object *newObject = [NSEntityDescription insertNewObjectForEntityForName:@"Object" inManagedObjectContext:self.managedObjectContext]; self.object = [newObject retain]; } return self; } #pragma mark #pragma mark - #pragma mark Memory Management -(void) dealloc { [object release], object=nil objectMapView.delegate = nil; [objectMapView release], objectMapView = nil; [super dealloc]; } #pragma mark #pragma mark - #pragma mark Enable/Disable Button and Textfield States -(IBAction) updateSaveButtonState{ if([objectNameTextField.text isEmptyOrWhitespace]) { [saveButton setEnabled:NO]; } else { [saveButton setEnabled:YES]; } } #pragma mark #pragma mark - #pragma mark UITextField Delegate - Optional Method Implementations - (void)textFieldDidEndEditing:(UITextField *)textField{ [textField resignFirstResponder]; if([textField isEqual:objectNameTextField]) { if(![objectNameTextField.text isEmptyOrWhitespace]) { [object setName:objectNameTextField.text]; } else { [object setName:nil]; } } } - (void)textFieldDidChange:(NSNotification*)aNotification{ [self updateSaveButtonState]; } #pragma mark #pragma mark - #pragma mark Core Data Persistance Management Procedures - (IBAction)save { if([objectMapView annotations].count != 0) { NSLog(@"Cleaning up annotations"); [objectMapView removeAnnotations:[objectMapView annotations]]; } NSError *error = nil; //Double Check that all Object Information is Updated Before Saving [self textFieldDidEndEditing:NameTextField]; if (![managedObjectContext save:&amp;error]) { // Handle error exit(-1); // Fail } objectMapView.delegate = nil; [self.delegate newObjectViewController:self didAddObject:object]; } - (IBAction)cancel { [managedObjectContext deleteObject:object]; if([objectMapView annotations].count != 0) { NSLog(@"Trying to clean up %d annotations",[objectMapView annotations].count); [objectMapView removeAnnotations:[objectMapView annotations]]; } NSError *error = nil; if (![managedObjectContext save:&amp;error]) { // Handle error exit(-1); // Fail } objectMapView.delegate = nil; [self.delegate newObjectViewController:self didAddObject:nil]; } #pragma mark #pragma mark - #pragma mark Location Notification Observer Management -(void) addLocationObserversAndStartUpdatingLocation{ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(locationDeniedNotification) name:@"LOCATION_DENIED_NOTIFICATION" object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(newLocationNotification) name:@"NEW_LOCATION_NOTIFICATION" object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(locationErrorNotification) name:@"LOCATION_ERROR_NOTIFICATION" object:nil]; [[MyCLController sharedInstance].locationManager startUpdatingLocation]; } -(void) removeLocationObserversAndStopUpdatingLocation{ [[NSNotificationCenter defaultCenter] removeObserver:self name:@"LOCATION_DENIED_NOTIFICATION" object:nil]; [[NSNotificationCenter defaultCenter] removeObserver:self name:@"NEW_LOCATION_NOTIFICATION" object:nil]; [[NSNotificationCenter defaultCenter] removeObserver:self name:@"LOCATION_ERROR_NOTIFICATION" object:nil]; [[MyCLController sharedInstance].locationManager stopUpdatingLocation]; } #pragma mark #pragma mark - #pragma mark Location Notification Callback Procedures -(void) newLocationNotification{ if(([[MyCLController sharedInstance] locationManager].location != NULL) &amp;&amp; ([[MyCLController sharedInstance] locationManager].location != nil)) { [self removeLocationObserversAndStopUpdatingLocation]; // Add annotation to map CustomMapAnnotation *annotation = [[CustomMapAnnotation alloc] initWithCoordinate:[[MyCLController sharedInstance] locationManager].location.coordinate title:@"Mark Location With Pin"]; [self.objectMapView addAnnotation:annotation]; [self.objectMapView selectAnnotation:annotation animated:YES]; [annotation release]; } } -(void) locationErrorNotification{ [self removeLocationObserversAndStopUpdatingLocation]; } -(void) locationDeniedNotification{ [self locationErrorNotification]; } #pragma mark #pragma mark - #pragma mark Location Update Procedures -(IBAction) updateLocationWithPlacemark:(MKPlacemark*)placemark{ NSDictionary *addressDictionary = [[placemark addressDictionary] retain]; CLLocationCoordinate2D coordinate = [placemark coordinate]; //Update Latitude [(GeoTag*)[(Location*)[object location] geoTag] setLatitude:[NSNumber numberWithDouble:coordinate.latitude]]; //Update Longitude [(GeoTag*)[(Location*)[object location] geoTag] setLongitude:[NSNumber numberWithDouble:coordinate.longitude]]; //Update Country [object setCountry:[addressDictionary objectForKey:@"CountryCode"]]; //Update City [object setCity:[addressDictionary objectForKey:@"City"]]; //Update State/Province Initials [object setStateOrProvince:[addressDictionary objectForKey:@"State"]]; //Update ZipCode/PostalCode [object setZipCodeOrPostalCode:[addressDictionary objectForKey:@"ZIP"]]; [addressDictionary release]; } #pragma mark #pragma mark - #pragma mark Notification Observers -(void) addObservers{ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldDidChange:) name:@"UITextFieldTextDidChangeNotification" object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(annotationCalloutInfoDidChange:) name:@"MKAnnotationCalloutInfoDidChangeNotification" object:nil]; } -(void) removeObservers{ [[NSNotificationCenter defaultCenter] removeObserver:self name:@"UITextFieldTextDidChangeNotification" object:nil]; [[NSNotificationCenter defaultCenter] removeObserver:self name:@"MKAnnotationCalloutInfoDidChangeNotification" object:nil]; } #pragma mark #pragma mark - #pragma mark Custom Annotation Update Notification Handler -(void) annotationCalloutInfoDidChange:(NSNotification*)aNotification { CustomAnnotation *annotation = (CustomAnnotation*)[aNotification object]; [self updateLocationWithPlacemark:[annotation placemark]]; [self updateSaveButtonState]; } #pragma mark #pragma mark - #pragma mark MKMapViewDelegate Optional Implementations - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id &lt;MKAnnotation&gt;)annotation { if (annotation == mapView.userLocation) { return nil; } CustomAnnotationView *annotationView = (CustomAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"CustomAnnotation"]; if (annotationView == nil) { annotationView = [[[CustomAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"CustomAnnotation"] autorelease]; } return annotationView; } - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views {} - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {} #pragma mark #pragma mark - #pragma mark View LifeCycle -(void) viewDidLoad{ [super viewDidLoad]; [self addObservers]; [self addLocationObserversAndStartUpdatingLocation]; } @end </code></pre> <p>Additionally, here is the crash log:</p> <pre><code>Thread 0 Crashed: 0 libobjc.A.dylib 0x00003ec0 objc_msgSend + 24 1 UIKit 0x0005c8b0 -[UIImageView stopAnimating] + 76 2 UIKit 0x0005c808 -[UIImageView dealloc] + 20 3 CoreFoundation 0x0003963a -[NSObject release] + 28 4 MapKit 0x0006b8a4 -[MKAnnotationView dealloc] + 80 5 CoreFoundation 0x0003963a -[NSObject release] + 28 6 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 7 UIKit 0x0005ca1c -[UIView dealloc] + 232 8 MapKit 0x0003a814 -[MKOverlayView dealloc] + 804 9 CoreFoundation 0x0003963a -[NSObject release] + 28 10 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 11 UIKit 0x0005ca1c -[UIView dealloc] + 232 12 UIKit 0x000cb870 -[UIScrollView dealloc] + 284 13 MapKit 0x000699bc -[MKScrollView dealloc] + 88 14 CoreFoundation 0x0003963a -[NSObject release] + 28 15 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 16 UIKit 0x000cb4a0 -[UIScrollView removeFromSuperview] + 68 17 UIKit 0x0005ca1c -[UIView dealloc] + 232 18 CoreFoundation 0x0003963a -[NSObject release] + 28 19 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 20 UIKit 0x0005ca1c -[UIView dealloc] + 232 21 MapKit 0x00017794 -[MKMapView dealloc] + 1384 22 CoreFoundation 0x0003963a -[NSObject release] + 28 23 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 24 UIKit 0x0005ca1c -[UIView dealloc] + 232 25 CoreFoundation 0x0003963a -[NSObject release] + 28 26 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 27 UIKit 0x0005ca1c -[UIView dealloc] + 232 28 CoreFoundation 0x0003963a -[NSObject release] + 28 29 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 30 UIKit 0x0005ca1c -[UIView dealloc] + 232 31 CoreFoundation 0x0003963a -[NSObject release] + 28 32 UIKit 0x0000ab2c -[UIView(Hierarchy) removeFromSuperview] + 592 33 UIKit 0x0005ca1c -[UIView dealloc] + 232 34 CoreFoundation 0x0003963a -[NSObject release] + 28 35 Foundation 0x00047990 NSPopAutoreleasePool + 238 36 QuartzCore 0x0001e0fc run_animation_callbacks(double, void*) + 600 37 QuartzCore 0x0001de64 CA::timer_callback(__CFRunLoopTimer*, void*) + 156 38 CoreFoundation 0x000574bc CFRunLoopRunSpecific + 2192 39 CoreFoundation 0x00056c18 CFRunLoopRunInMode + 44 40 GraphicsServices 0x0000436c GSEventRunModal + 188 41 UIKit 0x00003c28 -[UIApplication _run] + 552 42 UIKit 0x00002228 UIApplicationMain + 960 43 TestApp 0x0000244a main (main.m:14) 44 TestApp 0x000021d4 start + 44 </code></pre> http://stackoverflow.com/questions/1633665/hibernate-how-to-annotate-a-property-as-enum-with-a-field 1 hibernate - How to annotate a property as enum with a field kan 2009-10-27T21:04:07Z 2009-11-07T21:48:53Z <p>How do I map an enum with a field in it?</p> <pre><code>public enum MyEnum{ HIGHSCHOOL ("H"), COLLEGE("C") private int value; public MyEnum getInstance(String value){...} } @Entity public class MyEntity { @Enumerated(...) private MyEnum eduType; } </code></pre> <p>How do I annotate so that values H, C will be persisted in the database? If I keep <code>@Enumerated(EnumType.STRING)</code>, HIGHSCHOOL instead of H will be stored in the database. If I use <code>EnumType.ORDINAL</code>, 1 instead of H will be stored in the database. Kindly suggest a solution.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why 35 When do you use Java's @Override annotation and why? Alex B 2008-09-18T16:48:26Z 2009-11-07T00:35:47Z <p>What are the best practices for using Java's @Override annotation and why? </p> <p>It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there certain programming situations that call for using the @Override and others that should never use the @Override? </p> http://stackoverflow.com/questions/1631262/is-there-any-way-to-create-form-with-multiple-submit-buttons-on-spring-mvc-using 0 Is there any way to create form with multiple submit buttons on Spring MVC using annotations? Koguro 2009-10-27T14:39:50Z 2009-11-06T03:17:34Z <p>I'm trying to create simple add/remove form using annotation based Spring MVC. 'Add' functionality comes smoothly, but when I tried to add another button to form i've got stuck.</p> <p>Here is my code:</p> <p>Controller actions:</p> <pre><code>@RequestMapping(value = "/books/documentType.do", method = RequestMethod.GET) public String getDocType( @RequestParam(required = false, value = "id") Long id, ModelMap model) { DocTypeDTO docType = new DocTypeDTO(); if (id != null) docType = docTypeConverter.getDTO(id); model.addAttribute("docType", docType); return "/books/documentType"; } @RequestMapping(value = "/books/documentType.do", method = RequestMethod.POST) public String setDocType( @ModelAttribute("docType") DocTypeDTO docType, BindingResult result, SessionStatus sessionStatus ) { docTypeValidator.validate(docType, result); if (result.hasErrors()) return "/books/documentType"; else { docTypeConverter.saveDTO(docType); sessionStatus.setComplete(); return "redirect:/books/documentTypes.do"; } } </code></pre> <p>Awfully markuped form:</p> <pre><code>&lt;form:form method="post" commandName="docType" id="editForm"&gt; &lt;table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#dbdbdb"&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;td&gt; &lt;table border="0" cellspacing="0" cellpadding="0" width="100%"&gt; &lt;tr&gt; &lt;td class="spacer"&gt;&lt;img src="/images/spacer.gif" width="116" height="1" border="0"/&gt;&lt;/td&gt; &lt;td class="spacer"&gt;&lt;img src="/images/spacer.gif" width="216" height="1" border="0"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="form-cell-text-underlined"&gt;Отображать на сайте&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:checkbox path="shownOnSite"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="form-cell-text-underlined"&gt;Международный&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:checkbox path="international"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="form-cell-text-underlined"&gt;Внутренний код&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:input path="internalCode"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="form-cell-text-underlined"&gt;Код&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:input path="code"/&gt; &lt;form:errors path="code"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="form-cell-text-underlined"&gt;Код IATA&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:input path="codeIATA"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="padded-underlined"&gt;Название&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:input path="name"/&gt; &lt;form:errors path="name"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="padded-underlined"&gt;Название(Англ.)&lt;/td&gt; &lt;td colspan="2"&gt; &lt;form:input path="nameEn"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="3"&gt; &lt;input type="submit" value="Сохранить"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p></p> <p>Thanks!</p> http://stackoverflow.com/questions/1681266/how-to-check-references-of-annotated-methods 0 How to Check References of Annotated Methods Stroboskop 2009-11-05T15:26:03Z 2009-11-05T17:11:11Z <p>I'm trying to find a way to check my classes for references of methods with a particular annotation (think "Deprecated").</p> <p>As far as i see it, analysing <em>byte code</em> won't work because it doesn't contain any annotations.<br> Using <em>APT</em> doesn't really help because i need the <em>references</em> to the methods, not the annotated methods themselves.</p> <p>So, what options do i have?</p> <p>The best i can come up with is compiling a list of the annotated methods followed by a full code analysis, checking every method call against the list.<br> Is there a way to do that efficiently in an eclipse plug-in or an ant task?</p> http://stackoverflow.com/questions/1662444/hibernate-entity-with-restriction 1 Hibernate entity with restriction tcsc.ath.cx:8095openidserverusersluis.sa 2009-11-02T16:58:33Z 2009-11-04T20:49:02Z <p>Hi,</p> <p>We have a DB table that is mapped into a hibernate entity. So far everything goes well...</p> <p>However what we want is to only map enentitys that satisty a specific criteria, like ' distinct(fieldA,fieldB) '...</p> <p>Is it possible to map with hibernate and hibernate annotations? How can we do it? With @Filter?</p> http://stackoverflow.com/questions/1675610/arguments-against-annotations 15 Arguments Against Annotations Gandalf 2009-11-04T18:02:46Z 2009-11-04T20:00:28Z <p>My team is moving to Spring 3.0 and there are some people who want to start moving everything into Annotations. I just get a really bad feeling in my gut (code smell?) when I see a class that has methods like this: (just an example - not all real annotations)</p> <pre><code>@Transaction @Method("GET") @PathElement("time") @PathElement("date") @Autowired @Secure("ROLE_ADMIN") public void manage(@Qualifier('time')int time) { ... } </code></pre> <p>Am I just behind the times, or does this all seem like a horrible idea to anyone else? Rather then using OO concepts like inheritance and polymorphism everything is now by convention or through annotations. I just don't like it. Having to recompile all the code to change things that IMO are configuration seems wrong. But it seems to be the way everything (especially Spring) is going. Should I just "get over it" or should I push back and try to keep our code as annotation free as possible?</p>