The indexOf method doesn't accept a regex pattern. Instead you could do a method like this: public static int indexOfPattern(List<String> list, String regex) { Pattern pattern = Pattern.compile(regex); for (int i = 0; i < list.size(); i++) { String s = list.get(i); if (s != null && pattern.matcher(s).matches()) { return...
You should not let BehaviourItem implement Comparable as it doesn’t have a natural order. Instead, implement different Comparators for the different properties. Note that in Java 8, you can implement such a Comparator simply as Comparator<BehaviourItem> orderBySpeed=Comparator.comparingInt(BehaviourItem::getSpeed); which is the equivalent of Comparator<BehaviourItem> orderBySpeed=new Comparator<BehaviourItem>() { public int compare(BehaviourItem a, BehaviourItem...
On the link you post, I see a class like below. Create this class in your project before using it. private class AsyncCallWS extends AsyncTask<String, Void, Void> { @Override protected Void doInBackground(String... params) { Log.i(TAG, "doInBackground"); getFahrenheit(celcius); return null; } @Override protected void onPostExecute(Void result) { Log.i(TAG, "onPostExecute"); tv.setText(fahren +...
In your MainActivity.java at line no 34 you are trying to initialize some widget that is not present in your xml layout which you have set it in your setContentView(R.layout.... That;s why you are geting nullpointerexception. EDIT: change your setContentView(R.layout.activity_main) to setContentView(R.layout.fragment_main)...
After the API 1.5.6 we have a different way to get the String bound. try this GlyphLayout layout = new GlyphLayout(); layout.setText(bitmapFont,"text"); float width = layout.width; float height = layout.height; and it's not recommended to create new GlyphLayout on each frame, create once and use it. ...
InputMismatchException - if the next token does not match the Integer regular expression, or is out of range. Integer.MIN_VALUE: -2147483648 Integer.MAX_VALUE: 2147483647 Instead of int use long long z = sc.nextLong(); ...
java,design,object-oriented-analysis
Another option is to make the action() method take an array of arguments (like main(...) does). That way ActorTwo could check the arguments to see if its in the special case, whereas the other Actors could just ignore the input. public abstract class Actor{ public abstract void action(String[] args); }...
You have to call DirectoryStream<Path> files = Files.newDirectoryStream(dir); each time you iterate over the files. Pls check this question... java.lang.IllegalStateException: Iterator already obtained...
SEVERE: DDCS - configuration: --extra-ldflags=-L/home/user/trunk/cpp_src/ffmpeg-source/libvpx --extra-ldflags=-L/home/user/trunk/cpp_src/ffmpeg-source/x264 --extra-cflags=-I/home/user/trunk/cpp_src/ffmpeg-source/x264 --extra-cflags=-I/home/user/trunk/cpp_src/ffmpeg-source/libvpx --enable-libvpx --enable-libx264 --enable-gpl --yasmexe=/home/user/trunk/cpp_src/ffmpeg-source/yasm/yasm Your ffmpeg is not compiled with libtheora support, so you can't encode to ogg/theora....
You shouldn't build SQL by putting your variables directly via string concatenation. What happens here is that with 11, your SQL becomes: set last=11 Which is valid SQL (using 11 as a integer literal), while with xx it becomes: set last=xx There are no quotes, so the SQL means you're...
I wrote a quick method for you that I think does what you want, i.e. remove all occurrences of a token in a line, where that token is embedded in the line and is identified by a leading dash. The method reads the file and writes it straight out to...
After super.onCreate(savedInstanceState); insert setContentView(R.layout.YourLayout); you need to make a request to a server in another thread. It might look like public class LoginTask extends AsyncTask<Void, Void, String>{ private String username; private String password; private Context context; public LoginTask(Context context, String username, String password) { this.username = username; this.password = password;...
java,spring,jms,spring-boot,spring-jms
The big difference between your code and the example is in the XML config example that myTargetConnectionFactory is actually a bean managed by Spring. You aren't doing that. You are just creating a new object Spring doesn't know about. The magic happens when setting the targetConnectionFactory of myConnectionFactory. Even though...
You can do it with rJava package. install.packages('rJava') library(rJava) .jinit() jObj=.jnew("JClass") result=.jcall(jObj,"[D","method1") Here, JClass is a Java class that should be in your ClassPath environment variable, method1 is a static method of JClass that returns double[], [D is a JNI notation for a double array. See that blog entry for...
java,list,collections,listiterator
You're reading the wrong documentation: you should read ListIterator's javadoc. It says: Throws: ... IllegalStateException - if neither next nor previous have been called, or remove or add have been called after the last call to next or previous Now, if you want a reason, it's rather simple. You're playing...
Correct me if I'm wrong. If you're saying that your code looks like this: new Thread(new Runnable() { public void run() { // thread code if (ready.equals("yes")) { // handler code } // more thread code }).start(); // later on... ready = "yes"; And you're asking why ready = "yes"...
My guess is that it approximates PI with PI = doCalculatePi(0)+doCalculatePi(1)+doCalculatePi(2)+... Just a guess. Trying this double d = 0; for(int k = 0; k<1000; k++) { System.out.println(d += doCalculatePi(k)); } gives me 3.0418396189294032 3.09162380666784 3.1082685666989476 [...] 3.1414924531892394 3.14149255348994 3.1414926535900394 ...
java,swing,layout,jpanel,layout-manager
If I'm understanding your needs correctly, you want B centered relative to the parent as a whole, not centered in the space left over after A is positioned. That makes this problem interesting and after testing the other suggested answers, I don't believe they can meet that requirement. I'm having...
You may try this query: select stop_name from behaviour where created_at in (select max(created_at) from behaviour) ...
java,while-loop,java.util.scanner
You are reading too much from the scanner! In this line while (sc.nextLine() == "" || sc.nextLine().isEmpty()) you are basically reading a line from the scanner, comparing it (*) with "", then forgetting it, because you read the next line again. So if the first read line really contains the...
java,android,eclipse,sdk,versions
There shouldn't be any problem if you use the latest SDK version ; actually, this is recommended. However, make sure to set the correct "Target SDK", i.e. the highest android version you have successfully tested your app with, and the "Minimum Required SDK" as well....
The 000000b0 is not part of the data. It's the memory address where the following 16 bytes are located. The two-digit hex numbers are the actual data. Read them from left to right. Each row is in two groups of eight, purely to asist in working out memory addresses etc....
In Java, you cannot write executable statements directly in class.So this is syntactically wrong: for(int i=0; i<10; i++) { this.colorList[i] = this.allColors[this.r.nextInt(this.allColors.length)]; } Executable statements can only be in methods/constructors/code blocks...
Design patterns are solutions to programming problems that automatically implement good design techniques. Someone has already faced the issues you’re facing, solved them, and is willing to show you what the best techniques are. Answer to your question is - Design patterns are higher level than libraries. Design patterns tell...
java,spring,spring-mvc,classcastexception,spring-webflow-2
FlowBuilderServices is meant to be a Spring-managed bean, but in your config it is just a new instance. It likes to be ApplicationContextAware and InitializingBean, but that is gonna work only if managed by Spring. The solution is simple: put @Bean on getFlowBuilderServices() method. And I think you should also...
You try to cast data type mx.collections:IList to UI component type spark.components:List, which of course leads to exception. Try to follow the error message hint and use mx.collections:IList: screenList.addAll(event.result as IList); ...
The problem is that when you call addShape(someColl, new Circle()); there are two different definitions of T ? extends Shape from Collection<? extends Shape> someColl Circle from the second parameter The other problem with that call is that T needs to be a concrete type for the second parameter, i.e....
Consider a package hierarchy folder1/hi. folder1 contains B.java and hi contains A.java. So B.java is in folder1 and A.java is in a folder named hi. So far so good. B.java looks like this : package hi.a12.pkg; public class B { } Oops. B.java says that it is in a...
have a a look at the classes in java.util.conucurrent ... CountDownLatch might be a solution for your problem if i understand your problem correctly.
You shouldn't use constant a pixel-to-unit conversion, as this would lead to different behavior on different screen sizes/resolutions. Also don't forget about different aspect ratios, you also need to take care about them. The way you should solve this problem is using Viewports. Some of them support virtual screen sizes,...
java,listview,arraylist,linkedhashmap
As nobody seems to answer, I will provide my approach. 1. Duplicated entries If you like to use a List , then as I stated out in the comments, I would let your Item class override Object.equals() and Object.hashCode(). These are used internally in ArrayList.contains(). This would give you no...
You cannot write to resource files. They are read-only.
java,testing,junit,spring-boot,mockito
Shouldn't you be passing an instance to set the field on, rather than the class, e.g.: ... @Autowired private Controller controller; ... @Before public void setUp() throws Exception { ... Processor processor = Mockito.mock(Processor.class); ReflectionTestUtils.setField(controller, "processor", processor); } ...
The easiest way to do this is to create an association from ChildObj to ParentObj similar to the following: @ManyToOne(fetch = FetchType.LAZY, optional = true) @JoinColumns({ @JoinColumn(name = "serverId", referencedColumnName = "serverId"), @JoinColumn(name = "code", referencedColumnName = "code")}) private ParentObj parentObj; and then define the @OneToMany association in ParentObj like...
java,android,listview,android-fragments,expandablelistview
You shouldn't pass your view item form a fragment to an other. You should retrieve the object associated with your group view, pass this object to your second/edition fragment. You can use setTargetFragment(...) and onActivityResult(...) to send the modified text from your second to your first fragment. And then you...
deleteEmployee method is not wrapped into a new transaction because you are referencing method on this. What you can do is to inject reference to the facade itself and then call deleteEmployee method on it (it should be public). More or less something like this: @Stateless public class MyFacade {...
It's not possible to do this using only the ArrayList. Either implement your own method which can be as simple as: private List<mystatistik> getAllUniqueEnemies(List<mystatistik> list){ List<mystatistik> uniqueList = new ArrayList<mystatistik>(); List<String> enemyIds = new ArrayList<String>(); for (mystatistik entry : list){ if (!enemyIds.contains(entry.getEnemyId())){ enemyIds.add(entry.getEnemyId()); uniqueList.add(entry); } } return uniqueList; } Or...
java,android,android-intent,uri,avd
Change your onClick method to below code. You should give the option to choose the external player. @Override public void onClick(View v) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("https://youtu.be/jxoG_Y6dvU8"), "video/*"); startActivity(Intent.createChooser(intent, "Complete action using")); } ...
By using the assignment statement, dataObj1 = dataObj;, dataObj1 refers to the exact same object as dataObj. The solution is to assign a copy of the object referenced by dataObj. One way to do this is via a copy constructor, something like: dataObj1 = new DataObjImpl(dataObj); Below is an example:...
Use {} instead of () because {} are not used in XPath expressions and therefore you will not have confusions.
The issue is with the dependencies that you have in pom.xml file. In Spring 4.1.* version the pom.xml dependency for Jackson libraries should include these: <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.4.1.1</version> </dependency> You...
java,android,gps,geolocation,location
See my post at http://gabesechansoftware.com/location-tracking/. The code you're using is just broken. It should never be used. The behavior you're seeing is one of the bugs- it doesn't handle the case of getLastLocation returning null, an expected failure. It was written by someone who kind of knew what he was...
java,android,xml,android-activity,android-listfragment
You are operating on the original data instead of filtered data. You should maintain a reference to original data and use the filtered data for all other purposes. So that the original data is displayed when search is cleared. Replace all usages of mData with mFilteredData as below and only...
I recommend you to use DeferredResult of Spring. It´s a Future implementation, that use the http long poling technique. http://docs.spring.io/spring-framework/docs/3.2.0.BUILD-SNAPSHOT/api/org/springframework/web/context/request/async/DeferredResult.html So let´s says that you will make a request, and the server it will return you the deferredResult, and then your request will keep it open until the internal process(Hibernate)...
java,metrics,dropwizard,codahale-metrics
Quoting the same link you added: Cached Gauges A cached gauge allows for a more efficient reporting of values which are expensive to calculate What if your metric takes around two seconds seconds to calculate, or even minutes? Would you calculate every time the user request the data? Makes sense...
I think the simplest way would be to make your booleans to int values and add them up. private static boolean odd(boolean x, boolean y, boolean z) { int sum = 0; if(x) sum++; if(y) sum++; if(z) sum++; // check if its odd. return sum % 2 != 0; }...
java,asynchronous,akka,blocking,future
If I understand this correctly, you kind of have two options here: you listen to a Future being completed or you do something with the result: If you want to listen, you can use some callback like final ExecutionContext ec = system.dispatcher(); future.onSuccess(new OnSuccess<String>() { public void onSuccess(String result) {...
java,api,wso2,wso2-am,api-manager
The Test button will send HTTP OPTION request to the endpoint, and if the endpoint supports HTTP OPTION request, then it is shown as valid. As far as your backend point support the HTTP method you need, you don't need to worry about this Test button against the endpoint....
What would be a correct way for overwriting existing row? Specify a conflict resolution strategy, such as INSERT OR REPLACE INTO foo ... If the insert would result in a conflict, the conflicting row(s) are first deleted and then the new row is inserted....
No, there's no need, the JavaDoc tool parses the Java code and gets the types from there. This article on the Oracle Java site may be useful: How to Write Doc Comments for the Javadoc Tool From the @param part of that article: The @param tag is followed by the...
Every classes is a Sub class to Object Class. if you are extending your own class with another class. That super class is also a sub class of Object class. Suppose: Class A // extends Object { } Class B extends A { } here i am extending Class B...
The way you are trying to create the client is correct, be carreful with the classes that you use, but the general idea is correct. This is a good tutorial for creating a web service and the client in that way. Another way is using the wsconsume or wsimport tools....
I'm sad that this question hasn't been answered, and upon that, I can't upvote it from it's -8 cause I don't have enough reputation. It seems downvoting is getting too unwarranted here. OP is just looking for an answer, which can be answered here and found online, he has tried...
student2.getCourse() returns a course. It is possible to call getCourseCode() on a course. This is an example of method chaining. The equivalent code is: Course tempVar = student2.getCourse(); System.out.println("I like" + tempVar.getCourseCode()); As you learn more programming, you will find this to be consistent. A variable declared Course is clearly...
You can check out TWL's wiki here: "http://wiki.l33tlabs.org/bin/view/TWL/" it has some basic tutorials on how to use it, and here's a "Getting Started" page for niftyGUI: https://github.com/void256/nifty-gui/wiki/Getting-Started
-0777 is treated by the compiler as an octal number (base 8) whose decimal value is -511 (-(64*7+8*7+7)). -777 is a decimal number.
To only allow digits, comma and spaces, you need to remove (, ) and -. Here is a way to do it with Matcher.find(): Pattern pattern = Pattern.compile("^[0-9, ]+$"); ... if (!m.find()) { evt.consume(); } And to allow an empty string, replace + with *: Pattern pattern = Pattern.compile("^[0-9, ]*$");...
java,android,illegalstateexception,broken-pipe
When you execute the command os.writeBytes("exit\n"); this ends your su session. The su process ends itself and the pipe your are using for writing commands to the su shell gets broken. Therefore if you want to execute another command you have to restart a new su session or do not...
Java.util.logging does not support rotating on a daily basis, see this bug report: http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6350749 Alternatively, you could use logback, log4j or log4j2 and slf4j to tunnel JUL (see http://www.slf4j.org/legacy.html#jul-to-slf4j). All of the mentioned frameworks support date-based file rotation. HTH, Mark...
java,elasticsearch,elasticsearch-plugin
When indexing documents in this form, Elasticsearch will not be able to parse those strings as dates correctly. In case you transformed those strings to correctly formatted timestamps, the only way you could perform the query you propose is to index those documents in this format { "start": "2010-09", "end":...
Say you have a jsp test.jsp under /WEB-INF/jsp/reports From your controller return @RequestMapping("/helloWorld") public String helloWorld(Model model) { model.addAttribute("message", "Hello World!"); return "reports/test"; } ...
There won't be any difference, since you've only changed the scope of the variables. Since you're not using the variables outside of the scope, the generated bytecode will be identical as well (you can try it out with javap). So use the second style for clarity. Edit: In fact if...
One major difference is that Java had exceptions, and exception handling, from the start. That means there is no need to return "SUCCESS". If it returns at all, rather than throwing an exception, it was successful. Java does not have pass-by-reference. What it does have is pointers. When you call...
It Should be a loop inside loop for column and row final Table<String, String, List<String>> values = HashBasedTable.create(); values.put("ton bon", "currency", Lists.newArrayList("ccdd","rode1","cwey","Certy")); values.put("ton bon", "racy", Lists.newArrayList("wqadd","werde","ihtr","ytre")); Map<String, List<String>> row = values.row("ton bon"); Map<String, String> fmap = new HashMap<String, String>(); System.out.println("Key\tValue"); for(String columnKey:row.keySet()) { List<String> rowValues =...
Instance variables are declared inside a class. not within a method. class A { private int price; //instance variable private String name; //instance variable } And instance variables always get a default value( integers 0, floating points 0.0, booleans false, String / references null). Local variables are declared within a...
You can use a fully qualified name, for example, java.lang.String.length()
Instead of using driver.quit() to close the browser, closing it using the Actions object may work for you. This is another way to close the browser using the keyboard shortcuts. Actions act = new Actions(driver); act.sendKeys(Keys.chord(Keys.CONTROL+"w")).perform(); Or, if there are multiple tabs opened in driver window: act.sendKeys(Keys.chord(Keys.CONTROL,Keys.SHIFT+"w")).perform(); ...
Math.floor(x+0.7) should do it. This should work for an arbitrary mantissa. Just add the offset to the next integer to your value and round down. The rounding is done by floor. Here is what the java API says to floor: Returns the largest (closest to positive infinity) double value that...
java,apache-spark,apache-spark-sql
If you use plain spark you can join two RDDs. let a = RDD<Tuple2<K,T>> let b = RDD<Tuple2<K,S>> RDD<Tuple2<K,Tuple2<S,T>>> c = a.join(b) This produces an RDD of every pair for key K. There are also leftOuterJoin, rightOuterJoin, and fullOuterJoin methods on RDD. So you have to map both datasets to...
java,spring,logging,lightadmin
You can use the class AbstractRepositoryEventListener like it's show on the LightAdmin documentation here Add you logger insertion by overiding onAfterSave, onAfterCreate and onAfterDelete into your own RepositoryEventListener. After you just need to register your listener like this public class YourAdministration extends AdministrationConfiguration<YourObject> { public EntityMetadataConfigurationUnit configuration(EntityMetadataConfigurationUnitBuilder configurationBuilder) { return...
I guess the answer depends on your answer to these questions: Since you can never trust ANYTHING that comes in a client request, are there any harmful effects that could come by a hacker spoofing the pojo value? By sending the object to the client, does this expose any internal...
Because the JIT kicks in, and detects that Random.nextInt() and equals() are two methods that are often called, and that optimizing them is thus useful. Once the byte-code is optimized and transformed to native code, its execution is faster. Note that what you're measuring is probably more Random.nextInt() than equals()....
You can use the provider interface public class StorageProxyProvider implements Provider<StorageProxy> { public StorageProxy get() { StorageProxy storageProxy = new StorageProxy(); storageProxy.init(); return storageProxy; } } public class StorageProxyModule extends AbstractModule { protected void configure() { bind(StorageProxy.class).toProvider(StorageProxyProvider.class).in(Singleton.class); } } A working example: public class StorageProxyProvider implements Provider<StorageProxy> { public StorageProxy...
java,selenium,webdriver,junit4
Your ID is dynamic, so you can't use it. Select will not work in your case, you just need to use two clicks WebElement dropdown = driver.findElement(By.xpath("//div[@class='select-pad-wrapper AttributePlugin']/input")); dropdown.click(); WebElement element = driver.findElement(By.xpath("//div[@class='select-pad-wrapper AttributePlugin']/div/ul/li[text()='Image']")); element.click(); ...
else { System.out.println(diceNumber); } You are printing the address of diceNumber by invoking its default toString() function in your else clause. That is why you are getting the [email protected] The more critical issue is why it gets to the 'else' clause, I believe that is not your intention. Note: In...
java,spring,spring-mvc,spring-security,csrf
You seem to have upgraded Spring Security to 4.x as well (evidenced by xsi:schemaLocation="http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd). Unfortunately, Spring Security 4.x is not a drop-in replacement for 3.x. You will need to review the Official Migration Guide for configuration elements that need to be tweaked. However, some of the ones that stand...
Actually you can generate class with soap ui. And your program can easily call the service using the class created without construct your own request header and body But you need some library. Example java jdk comes with jax-ws lib tutorial: http://www.soapui.org/soap-and-wsdl/soap-code-generation.html...
Columns don't contain items, Rows contain items. You can set the visible columns by passing a array to the setVisibleColumns methos of the Table. It could also be a idea, to just colapse the column, not hiding it... Determining if all values of this colum are empty should be simple...
You need to use the JavaFx MouseEvent. Currently you are trying to use the Java.awt MouseEvent Try importing only Java libraries from Javafx and not awt so you can avoid having the wrong type. Once you fix that, the methods getX() and getY() should give you the position. (Or depending...
java,android,android-fragments,spannablestring
If LoginActivity is a fragment class then it would be okay is you use setOnClickListener on textview. But for fragment change you have to change Intent to fragmentTransaction, Use something like, textview.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { getFragmentManager().beginTransaction().replace(R.id.container, new LoginActivity() ).addToBackStack("").commit(); }); But, if you want to...
java,jsp,spring-mvc,liferay,portlet
Which version of Liferay you are using? if it is > 6.2 GA1 Then in your liferay-portlet.xml file, please add this attribute and recompile and test again. <requires-namespaced-parameters>false</requires-namespaced-parameters> Liferay adds namespace to the request parameters by default. You need to disable it. ...
Here's what I would do. Replace <JSON STRING HERE> with the JSON String you were going to parse: ArrayList<ArrayList<Integer>> resultList = new ArrayList<ArrayList<Integer>>(); JSONArray arr = new JSONArray(<JSON STRING HERE>); for(int i = 0; i < arr.length(); i ++) { JSONObject obj = arr.getJSONObject(i); JSONArray valueArray = obj.getJSONArray("values"); ArrayList<Integer> dataList...
You cannot convert an arbitrary sequence of bytes to String and expect the reverse conversion to work. You will need to use an encoding like Base64 to preserve an arbitrary sequence of bytes. (This is available from several places -- built into Java 8, and also available from Guava and...
If your application is an .app bundle then it should have an info.plist. Inside the info.plist will normally contain version information that should display the version number: <key>CFBundleShortVersionString</key> <string>2.0.0</string> Typically the version information here is populated in places that call for it (eg. About). To change the name that would...
The name of your getter & setter is wrong. By convention it must be: public Integer getSurvey_id() { return survey_id; } public void setSurvey_id(Integer survey_id) { this.survey_id=survey_id; } ...
Use URLConnection.setUseCaches(boolean);. In your case, it would be connection.setUseCaches(false);...
java,netbeans,bundle,executable
I'd use something like System.getenv("HOME"); to find the user's home directory instead of changing Java's working directory....
If you look at the error message: Main.java:10: error: incompatible types: possible lossy conversion from int to byte static byte[] bytearray = {0x02, 0x08, 0x16, 0x0, 0x00, 0x33, 0xC6, 0x1B}; ^ There is a small caret pointing to the value 0xC6. The reason for the issue is that java's byte...
Apparently the put method doesn't evaluate the value passed, but assumes it is meant as a literal. For example script.put("test", 5) will put the literal integer value 5 into a variable called test. The second thing that's wrong is that get also doesn't evaluate its parameter, but assumes it, too,...
Exception comes from this line: ReflectionTestUtils.setField(userResource, "userRepository", userRepository); Second parameter of setField method is a field name. UserResource has field "repository" - not "userRepository" as you try to set in your test....
This worked for me: String str = "CN=COUD111235,OU=Workstations,OU=Mis,OU=Accounts,DC=FL,DC=NET"; String regex = "CN=([^,]*),"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(str); m.find(); String computerName = m.group(1); Full example referencing your code: import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test { public static void main(String[]...
java,mysql,hibernate,java-ee,struts2
You can simply create an Entity, that's mapping the database view: @Entity public class CustInfo { private String custMobile; private String profession; private String companyName; private Double annualIncome; } Make sure you include an @Id in your view as well, if that's an updatable view. Then you can simply use...