In programming, annotations are used to add information to a code element which cannot be expressed by the type system.
6
votes
0answers
618 views
junit implementation of multiple runners
I have been trying to create a personalized test suite by creating a suiterunner which extends runner. In the test suite which is annotated with @runwith(suiterunner.class) i am referring to the test ...
3
votes
0answers
137 views
Disable Jackson mapper for a particular annotation
With Jackson, it's easy to disable all annotations for a given ObjectMapper.
Is there a way to only disable one given annotation?
// disable all
ObjectMapper mapper = new ObjectMapper()
...
3
votes
0answers
690 views
Fatal error in Doctrine\ORM\Proxy\ProxyFactory::getProxy()
Hey I am working on a symfony2 project and trying to create routes using annotations but I am getting an error but when I use to define routes from routes.yml file everything works fine but causing a ...
3
votes
0answers
153 views
Can I process jaxb annotations at compile-time?
I am experimenting to see if I can somehow make JAXB work on Android in a limited scenario. (using other libraries is not an option).
I have gotten pretty far but at the moment I am stuck getting the ...
3
votes
0answers
261 views
Understanding the @ConnectionDefinitions annotation in jca 1.6
I cannot find an example that shows a use case for using the plural @ConnectionDefinitions on a ManagedConnectionFactory implementation. What confuses me is that the singular @ConnectionDefinition ...
3
votes
0answers
1k views
Hibernate: @wherejointable to filter subtable
I am already using @where clause to filter soft deleted rows for an entity. (with a 'deleted' flag). This works very well.
Now, I need to filter a linked table that store history of linked item.
The ...
2
votes
0answers
78 views
simple way to assign default value with xmlelement defaultvalue annotation
I have a simple pojo annotated class via JAXB like that :
public class MyPojo
implements Serializable
{
private final static long serialVersionUID = 1234L;
@XmlElement(name = ...
2
votes
0answers
62 views
Problems with calculated properties and inheritiance using @Formula in hibernate
Hi I'm pretty new to Hibernate so I might be doing some silly stuff.
I have an entity
@Entity
@Table(name="criterion")
@Inheritance(strategy = InheritanceType.JOINED)
public abstract class ...
2
votes
0answers
135 views
Hibernate 4 explicit polymorphism (annotation) not working?
I am facing problem with hibernate's explicit polymorphism. I used the polymorphism annotation and set it to explicit, but with get() and collections in mapped classes i always get all subclasses. I ...
2
votes
0answers
101 views
How do you specify a XmlAccessorType to be used for JAXB xjc-generated classes
I'm using XML schemas and generating java files with xjc to be used with JAXB.
The java files that are generated have the default @XmlAccessorType(XmlAccessType.FIELD) specified.
I would like to ...
2
votes
0answers
126 views
Using NULL with Hibernate Filter and HQL
I am using Hibernate filters as defined below:
@FilterDef(name="DeptFilter", parameters={@ParamDef(name = "schoolCode", type = "string"), @ParamDef(name = "deptCode", type = "string")})
...
2
votes
0answers
51 views
Command to generate annotations
I've been looking through the documentation of Intellij 12 but i couldn't find my answer. I'm currently using Intellij 12 with AndroidAnnotations on an Android Project. The project consists of ...
2
votes
0answers
311 views
Context Component Scan not finding my custom annotated beans
Hello I am trying to write a custom annotation for a Spring MVC webapp.But somehow annotated classes are not getting detected by Spring applicationContext.Here is my relevent code.
Annotated class:
...
2
votes
0answers
135 views
Generate documentation from EJB3.0 annotations
We are implementing a Java EE application and we use EJB3.0 annotations extensively to define session beans, message-driven beans, and inject JMS and JDBC dependency objects.
I would like to find a ...
2
votes
0answers
197 views
Annotation @RolesAllowed does not work on Web Service deployed in Tomcat 7.0.32
I think I am really stuck on this for 4 hours now.
I have a sample web service developed in JAX-WS, I have successfully configured BASIC authentication in web.xml but I just cannot make the annoation ...
2
votes
0answers
2k views
Spring MVC form:select Not returning Object in POST opperation
I have a question regarding retrieving an object from a list that has been used to populate a select form.
Controller:
@RequestMapping(value="listStaffMembers", method=RequestMethod.GET)
public ...
2
votes
0answers
57 views
Resharper Annotations on a delegate method?
I'm trying to create the External Annotations file for Commons.Logging. It's practically a straight copy from the log4net configuration, but what gets me puzzled is how can I decorate the following ...
2
votes
0answers
2k views
No adapter for endpoint SWS
I'm trying to create a simple Hello World WebService using this tutorial.
I'm running Java 1.7.0_04, Spring 2.1, everything is built with Maven and deployed with Tomcat6. However, when trying to ...
2
votes
0answers
25 views
SandCastle and Data Annotations
Does anyone know if there is a way to get SandCastle to pick up Data Annotations from the Entity framework that are on POCO properties?
2
votes
0answers
529 views
Tomcat @Resource annotations API annotation stops working in Tomcat 7
I have been using Tomcat 6.0.26-6.0.35 for several years with JSF 2 Mojarra, various versions up to 2.1.2 which I have been using for some months. I have code like this:
private ...
2
votes
0answers
137 views
Scan the Android class path for classes with annotations
I'm looking for ways to scan the class path for annotations. This is on the Android platform, which is why all the standard methods I've found so far don't seem to be working.
The only solution that ...
2
votes
0answers
163 views
How can I make Hibernate put comments on the tables/fields it creates
I would like Hibernate, when generating DDL, to include comments from my java source. I'd be happy to do this as an annotation, or as a javadoc tag.
IOW:
I'd like to be able to go
@Entity
...
2
votes
0answers
269 views
Setting annotation attribute from properties file
I am using the following annotation
@Schedule(minute = "*/1", hour = "*", persistent=false)
I want the minute attribute value read from a properties file. I have the following property file method ...
2
votes
0answers
219 views
How to avoid false import compile error with Java Annotation?
Let's assume ClassGenerated.java is generated by running the java annotation processor on ClassGeneratedParent.java and ClassA imports both ClassGenerated and ClassGeneratedParent.
When running javac ...
2
votes
0answers
82 views
How to get effect like HazardMap on dropped annotations in mapView iPhone?
I want to Make heat map (HazardMap) based on annotations dropped to the mapView. If i have more annotation than the location should be red. How to do This. Please anyone help me? like This Map
2
votes
0answers
81 views
Contribute to context menu of annotation bar in eclipse
How do I add/contribute to a context menu on annotation bar (vertical strip) on left side of text editor?
Thanks.
2
votes
0answers
165 views
Hover Action over own Annotation in Eclipse (Plugin)
I have created a Plugin that uses an own Annotation Marker. Now I want to add a special Hover Action, when I mouseover this special Marker. I don't really know where to add this action. I allready ...
2
votes
0answers
374 views
How to port jaxb annotation to simpleXml library?
I am using Simple xml library to port Jaxb annotations into android.
http://simple.sourceforge.net/home.php
I came accross this annotations in jaxb @XmlRegistry @XmlElementDecl and I have to convert ...
1
vote
0answers
10 views
Validation annotations without effect
I have a bean with a filed of type Set which is annotated with @NotNull and @Size(min=1)
@NotNull
@Size(min=1)
@ManyToMany
private Set< Room > affectedRooms;
and this is the corresponding ...
1
vote
0answers
20 views
How to use ClassPathScanningCandidateComponentProvider to scan jar Annotation classes?
I use the spring ClassPathScanningCandidateComponentProvider to search the Annotation classes
?
Here Is My code:
public static void main( String[] args )
{
...
1
vote
0answers
35 views
Are Filer's originating elements useful?
I'm working on a Java program (Dagger) that uses the Java annotation processing API to generate code. When our program encounters an annotation in Foo.java, it generates Foo$$InjectAdapter.java. We ...
1
vote
0answers
35 views
How to auto increment a non primary id column using Hibernate?
I have kept auto increment for primary key, by using auto increment option in my Table.
And I stated that using hibernate.
But now I want to auto increment a column which is not a primary key column ...
1
vote
0answers
31 views
Dynamic Values in annotations
I am writing an annotation based framework for my project. Earlier I was passing static text in annotations and it was working fine.Here is sample code:-
public class MyClass{
...
1
vote
0answers
50 views
Configuring MappedName annotation in Message Driven Bean dynamically
When using Message Driven BEans, the destination name from where to receive messages is hard coded in the annotation @MessageDriven(mappedName = "someDestinationName")
Is there a way to add this ...
1
vote
0answers
84 views
How to annotate an image overlay using Jquery?
I want to annotate an image using overlay by drag and drop(any images). Is there any way I can achieve it through Jquery and ajax. I have found some tutorial here.
But I couldnt find anything on ...
1
vote
0answers
50 views
missing annotation package in spring-modules-validation-0.8a source file
I have downloaded
spring-modules-validation-0.8a-sources.jar and spring-modules-validation-0.8a-
sources.jar.
In spring-modules-validation-0.8a-sources.jar there is package name annotation with ...
1
vote
0answers
88 views
Why does hibernate remove data from association table?
I have following relation in my program:
@Entity
@Table(name = "student")
public class Student extends Person {
private Map<Document, DocumentInfo> documents =
new ...
1
vote
0answers
45 views
Python: put current class as return type annotation
In python 3 I can make arguments and return type annotations. Example:
class Graph:
def __init__(self, V: int, E: int, edges: list):
pass
@classmethod
def fromfile(cls, readobj: ...
1
vote
0answers
32 views
How to map @Version with @JoinTable annotation
I have one mapping table Say EMP_ADD which maintains mapping between EMPLOYEE and ADDRESS tables.
Now to do this mapping I use following mapping in Employee class
@OneToMany
...
1
vote
0answers
60 views
How can I generate entity classes from database without using mapping files?
I have db tables and hibernate configuration file. Thing is I want to generate entity classes (which are using annotations not mapping files) from these tables. I am using Netbeans and there is an ...
1
vote
0answers
37 views
javax.annotation.security not Role Based Access Control?
When I look at Role Based Access Control (RBAC) I see a model where a user is a member of one or more roles and roles hold permissions that grant operations. That is, an operation (a method for ...
1
vote
0answers
121 views
java generics and .class (Solved)
I have a custom typeHandler for myBatis, defined as
@MappedJdbcTypes(JdbcType.VARCHAR)
public class JsonTypeHandler<T> extends BaseTypeHandler<T> {
.....
}
now i need to pass it in ...
1
vote
0answers
194 views
Integrity constraint violated just when I commit the transaction (SOLVED)
I'm using Hibernate 4.0 Final and ojdbc6 to develop my web application. Everything is ok except when I try to insert a new parent/child relationship. First of all, these are the entities:
@Entity
...
1
vote
0answers
61 views
annotating a video in WP7
I have a simple wp7 app where, among other things, i can capture/preview/download/upload videos. Nothing fancy, just basic functionality.
What i want to do now is to add some annotations (text over ...
1
vote
0answers
37 views
usage of values and annotate in django
I am trying to understand how values() and annotate() works.
In my app, I have a model
class MyEntry(models.Model):
entrydate = models.DateField(default=date.today)
...
If I do the following ...
1
vote
0answers
128 views
How do I use spring property sources within a child annotation context?
I'm trying to replicate something that works with XML config using annotated configuration classes. The problem I'm hitting is that property sources defined in the child context are not accessible.
...
1
vote
0answers
48 views
How to remove the xml spring configuration and use annotation?
I would like to remove the following code and use annotation (@Configuration). But I don't understand how to remove the bean: testServiceClientTarget
<bean id="testServiceClientFactoryBean" ...
1
vote
0answers
118 views
Spring Security @Secured annotation and Scala controller
In a mixed Java/Scala Spring (v3.2) project I want to create a scala-based controller, and secure it with @Secure annotation. For java controllers this works just fine, but when I add @Secure ...
1
vote
0answers
71 views
Can we use Annotations completely for the whole project?
I just wanna ask one thing regarding Annotations. I searched in google a lot and I read from many sites, BUT still iam not convinced. So, thats why i wanna ask myself.
Here are the queries:
a) I ...
1
vote
0answers
94 views
Setting up spring email with application context
I want my application to be able to send email on demand. I am currently using the tutorial from www.mykong.com which details setting up gmail settings.
However, I can't get the configuration ...


